/* cepli_dosya.css */

/* Sayfa Üst Başlıkları */
.page-title-container {
    text-align: center;
    padding: 1.5rem 0;
    background-color: #375e38; /* Yeşil Başlık Arka Planı */
    color: white;
    margin-bottom: 0.5rem;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 0.2rem;
}

.page-subtitle {
    font-size: 1.1rem;
    font-weight: 500;
    color: #e0e0e0;
    margin: 0;
}

/* Tablo Genel Stili */
.cepli-dosya-tables table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

/* Tablo Başlık Satırı */
.cepli-dosya-tables .table-header-row th {
    background-color: #555; /* Koyu Gri */
    color: white;
    font-weight: 700;
    padding: 1rem 0.5rem;
    text-align: center;
    border: 1px solid #444;
}

/* Tablo Satırları */
.cepli-dosya-tables .table-row {
    background-color: #f7f7f7;
}

.cepli-dosya-tables td {
    padding: 0.8rem 0.5rem;
    border: 1px solid #ddd;
    vertical-align: middle;
}

/* Sütun Stilleri */
.cepli-dosya-tables .kod-cell {
    font-weight: 700;
    color: white;
    background-color: #375e38; /* Koyu Yeşil Arka Plan */
    text-align: center;
    width: 15%;
}

.cepli-dosya-tables .adet-cell {
    font-weight: 600;
    color: #333;
    text-align: center;
    width: 15%;
}

.cepli-dosya-tables .ozellik-cell {
    text-align: left;
    color: #555;
}

.cepli-dosya-tables .price-cell {
    font-weight: 800;
    color: #c0392b; /* Kırmızı Fiyat */
    text-align: center;
    font-size: 1.1rem;
    width: 15%;
}

/* Vurgulama Stilleri */
.highlight-red {
    color: #c0392b;
    font-weight: 700;
}

/* EXPRESS Satırı Vurgusu */
.express-row {
    background-color: #fffde7;
}

.express-badge {
    display: inline-block;
    background-color: #ffeb3b;
    color: #333;
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    margin-left: 0.5rem;
    font-size: 0.85rem;
}

/* EK BİLGİ VE GÖRSELLER BÖLÜMÜ */
.extra-info-section {
    padding: 2rem 0;
    text-align: center;
}

.other-info-container {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 20px;
}

.additional-note-left, .additional-note-right {
    flex-basis: 40%;
    padding: 1rem;
    border: 3px solid #795548; /* Kahverengi Çerçeve */
    border-radius: 8px;
    text-align: center;
}

.additional-note-left p, .additional-note-right p {
    margin: 0.3rem 0;
    font-size: 1.1rem;
    color: #333;
    line-height: 1.4;
}

.highlight-note {
    font-size: 1.5rem;
    font-weight: 900;
    color: #c0392b;
}

.price-request {
    font-size: 1.4rem;
    font-weight: 800;
    color: #375e38;
}

.telli-avukat-note {
    font-size: 1.6rem;
    font-weight: 900;
    color: #1e3a5f;
    line-height: 1.1;
}

.web-address {
    color: #c0392b;
    font-size: 1.2rem;
    text-decoration: none;
    font-weight: 600;
    display: block;
    margin-bottom: 1rem;
}

/* ORTAK ALT NOTLAR STİLİ */
.alt-notlar {
    text-align: center;
    padding: 1rem 0;
    line-height: 1.5;
}

.warning-text-large {
    font-size: 1.5rem;
    font-weight: 900;
    color: #c0392b; /* Kırmızı renk */
    margin-bottom: 0.5rem;
}

.warning-text-small {
    font-size: 0.9rem;
    color: #2b547d;
}

/* MOBİL UYUMLULUK */
@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    /* Tablo sütunları daha daralır */
    .cepli-dosya-tables td {
        padding: 0.5rem 0.2rem;
        font-size: 0.8rem;
    }
    
    .cepli-dosya-tables .kod-cell {
        width: 15%;
    }
    
    .cepli-dosya-tables .price-cell {
        font-size: 0.9rem;
        width: 20%;
    }
    
    /* Ek Bilgileri alt alta diz */
    .other-info-container {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .additional-note-left, .additional-note-right {
        flex-basis: 100%;
    }
    
    .highlight-note, .telli-avukat-note, .price-request {
        font-size: 1.2rem;
    }
    
    .warning-text-large {
        font-size: 1.2rem;
    }
}


<script>
    function toggleMenu() {
        const sidebar = document.querySelector('.sidebar');
        sidebar.classList.toggle('open');
    }
</script>