.main-content {
    background-color: #f7f7f7;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Başlık kutusu için stil */
.main-title-box {
    background-color: #f78c40; /* Kutu arka plan rengi */
    color: white; /* Yazı rengi */
    padding: 5px 15px; /* İç boşluk */
    border-top-left-radius: 12px; /* Üst Sol */
    border-top-right-radius: 12px; /* Üst Sağ */
    border-bottom-left-radius: 0px; /* Alt Sol */
    border-bottom-right-radius: 0px; /* Alt Sağ */
    text-align: center; /* Yazıyı ortaya hizalama */
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1); /* Hafif gölge */
    
    /* Konum ayarları */
    margin-bottom: 0px;
    margin-top: -10px;
}

.page-title {
    font-size: 1.5em;
    color: white;
    margin: 0; 
    text-align: center;
}

.subtitle {
    font-size: 0.9em;
    color: #666;
    text-align: center;
    line-height: 1.5;
    margin-bottom: 30px;
}

.price-table-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 850px;
    margin: 0 auto;
}

.table-group {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 0;
    text-align: center;
    flex: 1 1 300px;
    overflow: hidden; 
}

/* Her tablo grubu için farklı başlık rengi */
.table-group:nth-of-type(1) h3 {
    background-color: #f78c40; /* Turuncu */
}

.table-group:nth-of-type(2) h3 {
    background-color: #e6528d; /* Pembe */
}

.table-group:nth-of-type(3) h3 {
    background-color: #6fb950; /* Yeşil */
}

.table-group h3 {
    font-size: 1.1em;
    font-weight: 600;
    margin: 0;
    padding: 15px 0;
    color: white;
    text-align: center;
}

.table-group table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1em;
}

.table-group th, .table-group td {
    padding: 12px;
    text-align: center;
    border: 1px solid #ddd;
    font-size: 1em;
}

.table-group thead th {
    font-weight: bold;
    color: #555;
    font-size: 1em;
}

/* Başlık sütunu için renkli arka planlar */
.table-group:nth-of-type(1) thead th:first-child {
    background-color: #FFFFFF;
    color: black;
}

.table-group:nth-of-type(2) thead th:first-child {
    background-color: #FFFFFF;
    color: black;
}

.table-group:nth-of-type(3) thead th:first-child {
    background-color: #FFFFFF;
    color: black;
}

/* 3. tablodaki Kraft sütunu için renk */
.table-group:nth-of-type(3) thead th:last-child {
    background-color: #c9b193;
    color: white;
}

/* Fiyat ve adet satırları için renkler */
.table-group tbody tr td {
    /* Genel tablo hücreleri için beyaz arka plan */
    background-color: #FFFFFF;
}

.table-group tbody tr td:first-child {
    font-weight: bold;
}

.table-group:nth-of-type(3) tbody tr td:last-child {
    /* Kraft sütununu rengini koru */
    background-color: #e0d4c5;
}

.product-code {
    font-size: 0.8em;
    color: #999;
    display: block;
    margin-top: 5px;
}

.additional-info {
    text-align: center;
    font-style: italic;
    color: #888;
    margin-top: 20px;
}

.info-block {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #ccc;
}

.info-block p {
    margin: 5px 0;
    color: #555;
    font-size: 0.9em;
}

.main-content img {
    width: 100%; 
    max-width: 700px;
    height: auto;
}

@media (max-width: 768px) {
    
    /* MEVCUT KURALINIZ (TABLOLARI ALT ALTA SIRALAR) */
    .price-table-container {
        flex-direction: column;
        align-items: center;
    }
    
    /* YENİ KURAL (UYARI METNİNİ KÜÇÜLTÜR) */
    .additional-info, 
    .info-block p {
        font-size: 0.8rem !important;
        padding: 0 10px;
        margin-top: 10px;
    }
}
.table-group tbody tr td:nth-child(2) {
    background-color: #FFFFFF;
}

.adet-kutusu {
    background-color: #ffffff !important;
}

th:contains("ADET") {
  /* İstediğiniz stil kuralları buraya */
  color: weight;
}



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