/* =============================================
   SLUG EDITOR - Global Styles
   Wiederverwendbar für alle Detail-Seiten
   ============================================= */

.slug-editor-container {
    margin-top: 10px;
    padding: 12px;
    background: rgba(40, 40, 40, 0.4);
    border: 1px solid rgba(220, 0, 0, 0.2);
    border-radius: 6px;
}

.slug-editor-container label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.slug-input,
.location-slug-input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    font-size: 14px;
    font-family: monospace;
    margin-bottom: 8px;
    background: rgba(0, 0, 0, 0.3);
    color: #ffffff;
    transition: all 0.2s;
}

.slug-input:focus,
.location-slug-input:focus {
    outline: none;
    border-color: #dc0000;
    box-shadow: 0 0 0 2px rgba(220, 0, 0, 0.15);
    background: rgba(0, 0, 0, 0.4);
}

.slug-preview,
.location-slug-preview {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    font-family: monospace;
    word-break: break-all;
}

.slug-preview span,
.slug-preview-text {
    color: #dc0000;
    font-weight: 500;
}

/* Location-spezifische Anpassungen */
.location-detail-slug-editor {
    margin-top: 10px;
}
