/* kapi_askiligi.css */

/* Sayfa Üst Başlıkları */
.kapi-askiligi-title-container {
    text-align: center;
    padding: 1rem 0;
    margin-bottom: 0.5rem;
    background-color: #333; /* Koyu Gri Arka Plan */
}

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

.page-subtitle-main {
    font-size: 1.2rem;
    font-weight: 500;
    color: #ff9800; /* Turuncu Vurgu */
    margin: 0;
}

/* Tablo Genel Stili */
.kapi-askiligi-tables table {
    width: 70%; /* Tabloyu ortalamak için genişlik kısıtlanır */
    margin: 2rem auto;
    border-collapse: collapse;
    font-size: 1rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Tablo Başlık Satırları */
.kapi-askiligi-tables .table-header-row th {
    background-color: #c0392b; /* Kırmızı Başlık */
    color: white;
    font-weight: 700;
    padding: 1rem 0.5rem;
    border: 1px solid #a93226;
}

.kapi-askiligi-tables .table-size-row th {
    background-color: #e67e22; /* Turuncu Alt Başlık */
    color: white;
    font-weight: 600;
    padding: 0.7rem 0.5rem;
    border: 1px solid #d35400;
    font-size: 0.9rem;
}

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

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

/* Adet Kolonu */
.kapi-askiligi-tables .adet-col {
    font-weight: 800;
    color: #1e3a5f; /* Koyu Mavi Adet */
    background-color: #eee;
    width: 25%;
}

/* Fiyat Hücreleri */
.kapi-askiligi-tables .price-cell {
    font-weight: 900;
    color: #375e38; /* Koyu Yeşil Fiyat */
    font-size: 1.2rem;
    width: 37.5%;
}

/* ORTAK ALT NOTLAR STİLİ */
.alt-notlar {
    text-align: center;
    padding: 2rem 0 3rem;
    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) {
    .kapi-askiligi-tables table {
        width: 100%;
        margin: 1rem auto;
    }
    
    .page-title-main {
        font-size: 1.8rem;
    }
    
    .page-subtitle-main {
        font-size: 1rem;
        padding: 0 10px;
    }

    .kapi-askiligi-tables th, .kapi-askiligi-tables td {
        padding: 0.7rem 0.3rem;
        font-size: 0.85rem;
    }
    
    .kapi-askiligi-tables .table-size-row th {
        font-size: 0.7rem;
    }
    
    .kapi-askiligi-tables .price-cell {
        font-size: 1rem;
    }
    
    .warning-text-large {
        font-size: 1.2rem;
    }
}


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