/* Mevcut stil dosyalarınıza ekleyin */

/* Genel stil tanımlarını koruyarak responsive ayarlar */
.trend-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.4rem;
    background-color: #e0f7f8;
    border-radius: 10px;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    box-sizing: border-box;
    /* Padding ve border'ları genişliğe dahil et */
}

.trend-box:hover {
    background-color: #d0f1f2;
    border-color: #00a4a4;
}

.trend-box input[type="radio"] {
    transform: scale(1.2);
    accent-color: #007782;
    margin-top: 5px;
}

.trend-box-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 85%;
    /* Mobil ve tablette içeriği daralt */
}

.trend-box-title {
    font-size: 1.1rem;
    font-weight: normal;
    color: #222;
    margin-bottom: 0.2rem;
    font-family: "Bree Serif", serif;
}

.trend-box-desc {
    font-size: 0.95rem;
    color: #555;
    font-weight: 400;
    font-family: "Inter", sans-serif;
}

/* SEÇİLİ OLAN İÇİN ÖZEL STİL */
.trend-box input[type="radio"]:checked~.trend-box-content {
    background-color: #c8f4f1;
    border: 2px solid #007782;
    border-radius: 10px;
    box-shadow: 0 0 0 2px #00778244;
}

/* Radio butonu sola hizalaması */
.trend-box input[type="radio"] {
    transform: scale(1.3);
    accent-color: #007782;
    margin-left: 0.5rem;
    /* Daha az boşluk */
}

/* Başlık ve alt metin */
.odm-header {
    text-align: center;
    font-size: 1.6rem;
    font-weight: 400;
    color: #007782;
    font-family: 'Bree Serif', serif;
    margin-bottom: 1rem;
}

.odm-subtext {
    text-align: center;
    font-size: 0.90rem;
    color: #555;
    font-family: 'Inter', sans-serif;
    margin-bottom: 1.5rem;
}

/* Mobil cihazlar için (max-width: 768px) */
@media only screen and (max-width: 768px) {
    .trend-box {
        flex-direction: column;
        /* İçeriği dikey hizala */
        align-items: flex-start;
        padding: 0.8rem 1rem;
        /* Daha az padding */
        margin-bottom: 0.8rem;
        /* Daha az boşluk */
    }

    .trend-box input[type="radio"] {
        transform: scale(1.1);
        /* Küçült */
        margin-left: 0;
        /* Sol boşluğu kaldır */
        margin-bottom: 0.5rem;
        /* Altına boşluk ekle */
    }

    .trend-box-content {
        width: 100%;
        /* Tam genişlik */
        padding-left: 1.5rem;
        /* İçeriği biraz sağa kaydır */
    }

    .trend-box-title {
        font-size: 1.3rem;
        /* Mobil için biraz büyüt */
    }

    .trend-box-desc {
        font-size: 0.85rem;
        /* Küçült */
    }

    .odm-header {
        font-size: 1.3rem;
        /* Başlığı küçült */
        margin-bottom: 0.8rem;
    }

    .odm-subtext {
        font-size: 0.80rem;
        /* Alt metni küçült */
        margin-bottom: 1rem;
    }
}

/* Tablet cihazlar için (769px - 1024px) */
@media only screen and (min-width: 769px) and (max-width: 1024px) {
    .trend-box {
        padding: 1rem;
        /* Hafif azalt */
        margin-bottom: 0.9rem;
    }

    .trend-box input[type="radio"] {
        transform: scale(1.2);
        /* Orta boy */
        margin-left: 0.3rem;
    }

    .trend-box-content {
        width: 90%;
        /* Hafif daralt */
    }

    .trend-box-title {
        font-size: 1.4rem;
        /* Hafif büyüt */
    }

    .trend-box-desc {
        font-size: 0.90rem;
        /* Hafif küçült */
    }

    .odm-header {
        font-size: 1.5rem;
        /* Hafif küçült */
        margin-bottom: 0.9rem;
    }

    .odm-subtext {
        font-size: 0.85rem;
        /* Hafif küçült */
        margin-bottom: 1.2rem;
    }
}

/* Daha büyük ekranlar için genel ayar (isteğe bağlı) */
@media only screen and (min-width: 1025px) {
    .trend-box {
        padding: 1.4rem;
    }

    .trend-box-title {
        font-size: 1.6rem;
    }

    .odm-header {
        font-size: 1.8rem;
    }
}