/* === GENEL KUTU === */
.dr-penguen-osgb-discounts {
    width: 100%;
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 12px;
    font-family: Arial, sans-serif;
}

/* Başlık */
.dr-penguen-osgb-discounts h2 {
    background-color: #f5a468;
    color: #fff;
    padding: 12px 16px;
    text-align: center;
    margin: 0 0 12px 0;
    font-size: 20px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Footer */
.dr-penguen-osgb-discounts .footer-line {
    text-align: center;
    font-size: 16px;
    color: #3c55a2;
    margin-top: 18px;
}

/* === TABLO GENEL === */
.discount-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed; /* Sütunları eşit genişlikte yapar */
}

/* TABLO BAŞLIKLARI */
.discount-table th {
    background-color: #3c55a2;
    color: #fff;
    padding: 12px;
    border: 2px solid #f5a468;
    font-size: 15px;
    text-align: center;
}

/* TABLO HÜCRELERİ */
.discount-table td {
    background-color: #fff;
    padding: 10px 12px;
    border: 2px solid #f5a468;
    color: #3c55a2;
    font-size: 14px;
    word-wrap: break-word;
    vertical-align: middle;
}

.discount-table td strong {
    font-weight: bold;
    color: #3c55a2;
}

/* TURUNCU AYIRICI SATIR */
.discount-table .separator-row td {
    background-color: #f5a468;
    height: 10px;
    padding: 0;
    border: none;
}

/* === RESPONSIVE (MOBİL) === */
@media (max-width: 768px) {
    /* Masaüstü başlıkları gizle */
    .discount-table thead {
        display: none;
    }

    /* Her satırı blok yap */
    .discount-table,
    .discount-table tbody,
    .discount-table tr,
    .discount-table td {
        display: block;
        width: 100%;
        border: none;
    }

    .discount-table td {
        background: #fff;
        border-bottom: 1px solid #f5a468;
        padding: 10px 12px;
        font-size: 15px;
    }

    /* Hastane adı için stil */
    .discount-table td strong {
        display: block;
        background: #3c55a2;
        color: #fff;
        padding: 8px 10px;
        font-size: 16px;
        border-radius: 4px 4px 0 0;
        margin-bottom: 6px;
    }

    /* Turuncu ayırıcı satır */
    .discount-table .separator-row td {
        background: #f5a468;
        height: 6px;
        margin: 8px 0;
        border: none;
    }
}
