﻿/* ====== Dialogs Index - Start ====== */
.dialogs-header {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.04) 100%);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

    .dialogs-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    }

.dialogs-title {
    font-size: 2.5rem;
    font-weight: 300;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    text-align: center;
}

.dialogs-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    max-width: 600px; /* İki düğme olduğu için biraz genişletildi */
    margin: 0 auto;
}

.dialogs-btn {
    flex: 1;
    padding: 0.8rem 1.5rem;
    border-radius: 16px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Create New Dialog (Primary Button) */
.dialogs-btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

    .dialogs-btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
        color: white;
        text-decoration: none;
    }

/* Manage Characters (Secondary/Import-like Button) */
.dialogs-btn-characters {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(118, 75, 162, 0.3); /* Mor tonu kullandım */
    color: #764ba2;
}

    .dialogs-btn-characters:hover {
        background: #764ba2;
        color: white;
        border-color: #764ba2;
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(118, 75, 162, 0.3);
        text-decoration: none;
    }

/* Grid, Card, and Empty State Styles (Same as Notebooks with Class Name Change) */
.dialogs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); /* Daha geniş kartlar için biraz artırıldı */
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.dialog-card {
    border: none;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.7) 100%);
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

    .dialog-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
        transform: scaleX(0);
        transition: transform 0.3s ease;
        transform-origin: left;
    }

    .dialog-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 60px rgba(102, 126, 234, 0.15);
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.85) 100%);
    }

        .dialog-card:hover::before {
            transform: scaleX(1);
        }

.dialog-card-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.dialog-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #374151;
    margin-bottom: 0.5rem; /* Meta bilgiler için boşluk bırakıldı */
    line-height: 1.3;
}

.dialog-description {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex-grow: 1;
    font-size: 0.95rem;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Açıklamayı 2 satırla sınırla */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* New: Dialog Meta Information */
.dialog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.85rem;
}

.dialog-category, .dialog-difficulty {
    padding: 0.3rem 0.8rem;
    border-radius: 10px;
    font-weight: 500;
}

.dialog-category {
    background-color: rgba(118, 75, 162, 0.1);
    color: #764ba2;
}

/* Difficulty Level Styles (Renk kodlaması eklendi) */
.dialog-difficulty {
    color: white;
}

.dialog-difficulty-beginner {
    background-color: #22c55e; /* Green */
}

.dialog-difficulty-intermediate {
    background-color: #f59e0b; /* Yellow/Orange */
}

.dialog-difficulty-advanced {
    background-color: #ef4444; /* Red */
}

.dialog-open-btn {
    padding: 0.7rem 1.5rem;
    border-radius: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 0.9rem;
    margin-top: auto;
}

    .dialog-open-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
        color: white;
        text-decoration: none;
    }

.dialogs-empty {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.6) 0%, rgba(248, 250, 252, 0.4) 100%);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    border: 2px dashed rgba(102, 126, 234, 0.2);
    position: relative;
    overflow: hidden;
}

    .dialogs-empty::before {
        content: '🗣️'; /* Emoji değiştirildi */
        font-size: 4rem;
        display: block;
        margin-bottom: 1.5rem;
        opacity: 0.4;
        animation: float 3s ease-in-out infinite;
    }

.dialogs-empty-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 1rem;
}

.dialogs-empty-text {
    color: #6b7280;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.dialogs-empty-btn {
    padding: 1rem 2rem;
    border-radius: 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

    .dialogs-empty-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
        color: white;
        text-decoration: none;
    }

/* Dark theme adaptations */
[data-bs-theme="dark"] .dialogs-header {
    background: linear-gradient(135deg, rgba(45, 55, 72, 0.6) 0%, rgba(26, 32, 44, 0.3) 100%);
}

[data-bs-theme="dark"] .dialogs-title {
    background: linear-gradient(135deg, #90cdf4 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[data-bs-theme="dark"] .dialogs-btn-characters {
    background: rgba(45, 55, 72, 0.9);
    border-color: rgba(144, 205, 244, 0.3);
    color: #90cdf4; /* Açık mavi tonu */
}

    [data-bs-theme="dark"] .dialogs-btn-characters:hover {
        background: #764ba2;
        color: white;
        border-color: #764ba2;
    }

[data-bs-theme="dark"] .dialog-card {
    background: linear-gradient(135deg, rgba(45, 55, 72, 0.9) 0%, rgba(26, 32, 44, 0.7) 100%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

    [data-bs-theme="dark"] .dialog-card:hover {
        background: linear-gradient(135deg, rgba(45, 55, 72, 0.95) 0%, rgba(26, 32, 44, 0.85) 100%);
        box-shadow: 0 20px 60px rgba(144, 205, 244, 0.15);
    }

[data-bs-theme="dark"] .dialog-title {
    color: #e2e8f0;
}

[data-bs-theme="dark"] .dialog-description {
    color: #a0aec0;
}

[data-bs-theme="dark"] .dialog-category {
    background-color: rgba(144, 205, 244, 0.1);
    color: #a78bfa;
}

/* Dark theme difficulty colors */
[data-bs-theme="dark"] .dialog-difficulty-beginner {
    background-color: #68d391; /* Light Green */
}

[data-bs-theme="dark"] .dialog-difficulty-intermediate {
    background-color: #f6ad55; /* Light Orange */
}

[data-bs-theme="dark"] .dialog-difficulty-advanced {
    background-color: #fc8181; /* Light Red */
}

[data-bs-theme="dark"] .dialogs-empty {
    background: linear-gradient(135deg, rgba(45, 55, 72, 0.6) 0%, rgba(26, 32, 44, 0.4) 100%);
    border-color: rgba(144, 205, 244, 0.2);
}

[data-bs-theme="dark"] .dialogs-empty-title {
    color: #e2e8f0;
}

[data-bs-theme="dark"] .dialogs-empty-text {
    color: #a0aec0;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .dialogs-header {
        padding: 1.5rem;
    }

    .dialogs-title {
        font-size: 2rem;
    }

    .dialogs-actions {
        flex-direction: column;
        gap: 0.8rem;
    }

    .dialogs-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .dialog-card-body {
        padding: 1.5rem;
    }

    .dialogs-empty {
        padding: 3rem 1.5rem;
    }

    .dialogs-empty-title {
        font-size: 1.5rem;
    }
}
/* ====== Dialogs Index - End ====== */


/* ====== DialogCharacters Index - Start ====== */

/* Genel Başlık ve Eylemler (Dialogs ile benzer) */
.characters-header {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.04) 100%);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

    .characters-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    }

.characters-title {
    font-size: 2.5rem;
    font-weight: 300;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    text-align: center;
}

.characters-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
}

.characters-btn {
    flex: 1;
    padding: 0.8rem 1.5rem;
    border-radius: 16px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.characters-btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

    .characters-btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
        color: white;
        text-decoration: none;
    }

/* Back to Dialogs Button (Import/Manage Characters'ın benzeri) */
.characters-btn-back {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(107, 114, 128, 0.3); /* Gri tonu */
    color: #4b5563; /* Koyu gri */
}

    .characters-btn-back:hover {
        background: #4b5563;
        color: white;
        border-color: #4b5563;
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(75, 85, 99, 0.3);
        text-decoration: none;
    }

/* Karakter Kartları */
.characters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.character-card {
    border: none;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.7) 100%);
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    padding: 1.5rem;
}

    .character-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
        transform: scaleX(0);
        transition: transform 0.3s ease;
        transform-origin: left;
    }

    .character-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 45px rgba(102, 126, 234, 0.15);
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.85) 100%);
    }

        .character-card:hover::before {
            transform: scaleX(1);
        }

.character-card-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-right: 1rem;
    box-shadow: 0 4px 10px rgba(118, 75, 162, 0.3);
}

.character-card-body {
    flex-grow: 1;
}

.character-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #374151;
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.character-abbreviation {
    font-weight: 400;
    font-size: 0.9rem;
    color: #6b7280;
}

.character-description {
    color: #6b7280;
    line-height: 1.5;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    /* Açıklamayı kısa tutmak için kesme */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.character-actions-footer {
    margin-top: auto;
    display: flex;
    gap: 0.5rem;
}

.character-action-btn {
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.2s ease;
    text-align: center;
}

.characters-btn-edit {
    background-color: #f59e0b; /* Amber */
    color: white;
    box-shadow: 0 2px 5px rgba(245, 158, 11, 0.3);
}

    .characters-btn-edit:hover {
        background-color: #d97706;
        color: white;
        transform: translateY(-1px);
    }

.characters-btn-delete {
    background-color: #ef4444; /* Red */
    color: white;
    box-shadow: 0 2px 5px rgba(239, 68, 68, 0.3);
}

    .characters-btn-delete:hover {
        background-color: #b91c1c;
        color: white;
        transform: translateY(-1px);
    }

/* Boş Durum (Empty State) */
.characters-empty {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.6) 0%, rgba(248, 250, 252, 0.4) 100%);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    border: 2px dashed rgba(102, 126, 234, 0.2);
    position: relative;
    overflow: hidden;
}

    .characters-empty::before {
        content: '👤'; /* Emoji değiştirildi */
        font-size: 4rem;
        display: block;
        margin-bottom: 1.5rem;
        opacity: 0.4;
        animation: float 3s ease-in-out infinite;
    }

.characters-empty-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 1rem;
}

.characters-empty-text {
    color: #6b7280;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.characters-empty-btn {
    padding: 1rem 2rem;
    border-radius: 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

    .characters-empty-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
        color: white;
        text-decoration: none;
    }

/* Dark Theme Adaptations */
[data-bs-theme="dark"] .characters-header {
    background: linear-gradient(135deg, rgba(45, 55, 72, 0.6) 0%, rgba(26, 32, 44, 0.3) 100%);
}

[data-bs-theme="dark"] .characters-title {
    background: linear-gradient(135deg, #90cdf4 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[data-bs-theme="dark"] .characters-btn-back {
    background: rgba(45, 55, 72, 0.9);
    border-color: rgba(160, 174, 192, 0.3);
    color: #a0aec0;
}

    [data-bs-theme="dark"] .characters-btn-back:hover {
        background: #4b5563;
        color: white;
        border-color: #4b5563;
    }

[data-bs-theme="dark"] .character-card {
    background: linear-gradient(135deg, rgba(45, 55, 72, 0.9) 0%, rgba(26, 32, 44, 0.7) 100%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

    [data-bs-theme="dark"] .character-card:hover {
        background: linear-gradient(135deg, rgba(45, 55, 72, 0.95) 0%, rgba(26, 32, 44, 0.85) 100%);
        box-shadow: 0 15px 45px rgba(144, 205, 244, 0.15);
    }

[data-bs-theme="dark"] .character-card-icon {
    box-shadow: 0 4px 10px rgba(144, 205, 244, 0.3);
}

[data-bs-theme="dark"] .character-title {
    color: #e2e8f0;
}

[data-bs-theme="dark"] .character-abbreviation,
[data-bs-theme="dark"] .character-description {
    color: #a0aec0;
}

[data-bs-theme="dark"] .characters-empty {
    background: linear-gradient(135deg, rgba(45, 55, 72, 0.6) 0%, rgba(26, 32, 44, 0.4) 100%);
    border-color: rgba(144, 205, 244, 0.2);
}

[data-bs-theme="dark"] .characters-empty-title {
    color: #e2e8f0;
}

[data-bs-theme="dark"] .characters-empty-text {
    color: #a0aec0;
}

/* Mobile responsiveness (Dialogs ile benzer) */
@media (max-width: 768px) {
    .characters-header {
        padding: 1.5rem;
    }

    .characters-title {
        font-size: 2rem;
    }

    .characters-actions {
        flex-direction: column;
        gap: 0.8rem;
    }

    .characters-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .character-card {
        padding: 1rem;
    }

    .characters-empty {
        padding: 3rem 1.5rem;
    }

    .characters-empty-title {
        font-size: 1.5rem;
    }
}
/* ====== DialogCharacters Index - End ====== */

/* ====== Dialogs Create - Start (Character Create stillerini temel alır) ====== */

.dialog-create-header {
    text-align: center;
    padding: 1.5rem 0;
    margin-bottom: 2rem;
}

.dialog-create-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #374151;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%); /* Yeni renk paleti */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dialog-create-subtitle {
    font-size: 1.1rem;
    color: #6b7280;
}

.dialog-create-container {
    max-width: 800px;
    margin: 0 auto;
}

.dialog-form-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.85) 100%);
    backdrop-filter: blur(15px);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 123, 255, 0.1);
    border-top: 5px solid #007bff; /* Vurgu çizgisi */
}

.form-section-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #007bff;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

/* Input ve Label Stilleri (Create Character'daki ile aynı olmalı) */
.form-label {
    font-weight: 600;
    color: #374151;
}

.form-label-required::after {
    content: " *";
    color: #ef4444;
}

.form-control-modern, .form-select-modern {
    border-radius: 12px;
    padding: 0.8rem 1rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

    .form-control-modern:focus, .form-select-modern:focus {
        border-color: #007bff;
        box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.2);
        background-color: white;
    }

.textarea-tall {
    min-height: 100px;
    resize: vertical;
}

/* Aksiyon Düğmeleri */
.dialog-form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

.dialog-create-btn {
    padding: 0.8rem 2rem;
    border-radius: 14px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-weight: 700;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
    transition: all 0.3s ease;
}

    .dialog-create-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
        color: white;
        text-decoration: none;
    }

.dialog-back-btn {
    padding: 0.8rem 2rem;
    border-radius: 14px;
    background-color: #f3f4f6;
    opacity: .9;
    color: #4b5563;
    font-weight: 600;
    border: 1px solid #d1d5db;
    transition: all 0.3s ease;
    text-decoration: none;
}

    .dialog-back-btn:hover {
        background-color: #e5e7eb;
        color: #1f2937;
    }

/* Dark Theme Adaptations */
[data-bs-theme="dark"] .dialog-create-title {
    background: linear-gradient(135deg, #66b3ff 0%, #a2c8ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[data-bs-theme="dark"] .dialog-form-card {
    background: linear-gradient(135deg, rgba(45, 55, 72, 0.95) 0%, rgba(26, 32, 44, 0.85) 100%);
    box-shadow: 0 10px 40px rgba(102, 179, 255, 0.1);
    border-top-color: #66b3ff;
}

[data-bs-theme="dark"] .form-section-title {
    color: #66b3ff;
    border-bottom-color: #4a5568;
}

[data-bs-theme="dark"] .form-label {
    color: #e2e8f0;
}

[data-bs-theme="dark"] .form-control-modern, [data-bs-theme="dark"] .form-select-modern {
    background-color: #2d3748;
    color: #e2e8f0;
    border: 1px solid #4a5568;
}

/* ... Diğer dark theme stilleri ... */
/* ====== Dialogs Create - End ====== */