/* GENEL CSS ALANI */
.proje_kart_ust_bilgi {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    margin-bottom: 4px;
    opacity: 0.7;
}
.proje_kisi {
    color: #fff;
    font-weight: bold;
}
.ceveplayan_renk {
    color: #D4AF37 !important; /* Cevaplayan hukukçunun adı altın sarısı parlasın */
}
.proje_tarih {
    color: #ccc;
}

/* DIKEY MEDYA SORGUSU ALANI (max-height: 780px) */
@media (max-height: 780px) {
    .proje_kart_ust_bilgi {
        font-size: 10px !important; /* Laptop ekranında üst bilgiler kibarca küçülsün */
    }
}


.proje_form_grup {
    margin-bottom: 8px;
    width: 100%;
}
.proje_form_grup .form-control {
    background: rgba(0, 0, 0, 0.2) !important;
    border: 1px solid rgba(214, 175, 55, 0.3) !important;
    color: #fff !important;
    font-size: 12px !important;
    height: 30px !important;
    padding: 4px 8px !important;
    border-radius: 4px !important;
}
.proje_form_grup .form-control:focus {
    border-color: #D4AF37 !important;
    box-shadow: 0 0 5px rgba(214, 175, 55, 0.4) !important;
}

/* KVKK MODAL TASARIMI */
.proje_modal_arka_plan {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999; /* Her şeyin üstünde dursun */
}
.proje_modal_kutu {
    background: #14120c;
    border: 1px solid #D4AF37;
    border-radius: 6px;
    width: 90%;
    max-width: 450px;
    padding: 20px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.5);
}
.proje_modal_baslik {
    color: #D4AF37;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(214, 175, 55, 0.2);
    padding-bottom: 6px;
}
.proje_modal_icerik {
    color: #ccc;
    font-size: 12px;
    line-height: 1.5;
    max-height: 200px;
    overflow-y: auto; /* Uzun metinlerde kutu taşmasın */
    margin-bottom: 15px;
    padding-right: 5px;
}
.proje_modal_butonlar {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.proje_form_grup textarea.form-control {
    height: 170px !important;    /* Varsayılan büyük ekranlarda dikeyde tam 4 katı yükseklik */
    resize: none !important;      /* Kullanıcının sağ alttan tutup kutuyu büyütmesini tamamen kilitler */
    overflow-y: auto !important;  /* Metin uzarsa kutu taşmasın, içeride şık bir dikey kaydırma barı çıksın */
}

/* DIKEY MEDYA SIKIŞTIRMASI (max-height: 780px) */
@media (max-height: 780px) {
    .proje_form_grup textarea.form-control {
        height: 90px !important;  /* Ekran dikeyde daraldığında nizam bozulmasın diye yüksekliği hafifçe kibarlaştırdık */
    }
    .proje_form_grup { margin-bottom: 5px !important; }
    .proje_form_grup .form-control { height: 26px !important; font-size: 11px !important; }
    .proje_modal_kutu { padding: 15px !important; }
    .proje_modal_baslik { font-size: 14px !important; }
    .proje_modal_icerik { font-size: 11px !important; max-height: 150px !important; }
}