.tymm-container {
    width: 90%;
    margin: 20px auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #334155;
    font-size: 1.3rem; /* Bütün sistemin temel font büyüklüğünü artırdık */
}

/* Slayt Yapısı ve İlerleme */
.tymm-progress {
    font-weight: 700;
    color: #008c8c;
    margin-bottom: 15px;
    font-size: 1.2rem; /* Daha belirgin ilerleme metni */
    text-align: right;
    border-bottom: 2px solid #eaf5f5;
    padding-bottom: 8px;
}

.tymm-slide {
    display: none;
    animation: fadeInSlide 0.4s ease-in-out;
}
.tymm-slide.active {
    display: block;
}

@keyframes fadeInSlide {
    from { opacity: 0; transform: translateX(15px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Üst ve Alt Navigasyon Alanları */
.tymm-slide-header, .tymm-slide-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.tymm-slide-footer {
    padding-top: 20px;
    margin-top: 10px;
    margin-bottom: 0;
}
/* Tek buton varsa sağa yasla (Örn: Sadece Sonraki veya Sadece Bitir) */
.tymm-slide-header:has(> :only-child),
.tymm-slide-footer:has(> :only-child) {
    justify-content: flex-end;
}

/* Navigasyon Buton Stilleri */
.tymm-btn-next-slide, .tymm-btn-prev-slide, .tymm-btn-finish {
    background-color: #008c8c;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    box-shadow: 0 2px 4px rgba(0, 140, 140, 0.15);
}

.tymm-btn-prev-slide {
    background-color: #64748b; /* Geri butonu için daha nötr bir renk */
    box-shadow: 0 2px 4px rgba(100, 116, 139, 0.15);
}
.tymm-btn-prev-slide:hover { background-color: #475569; }

.tymm-btn-next-slide:hover { background-color: #007373; transform: translateY(-1px); }
.tymm-btn-finish { background-color: #16a34a; box-shadow: 0 2px 4px rgba(22, 163, 74, 0.15);}
.tymm-btn-finish:hover { background-color: #15803d; }


/* Bağlam Alanı */
.tymm-context-box {
    background-color: #eaf5f5; 
    border: 1px solid #cbe6e6;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px -1px rgba(0, 140, 140, 0.05);
}

.tymm-context-text {
    font-size: inherit; /* Container'dan gelen (1.1rem) boyutu miras alacak */
    line-height: 1.7;
    margin-bottom: 20px;
}

.tymm-image-wrapper {
    text-align: center;
}

.tymm-image {
    max-width: 100%;
    height: auto;
    border: 8px solid #ffffff; 
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Soru ve Seçenekler */
.tymm-question-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.tymm-q-kok {
    font-weight: 600;
    font-size: inherit; /* Temel boyutu koruyarak okunabilirliği artırır */
    margin-bottom: 20px;
    color: #0f172a;
}

.tymm-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tymm-option {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #f8fafc;
}

.tymm-option:hover:not(.answered) {
    background: #f1f5f9;
    border-color: #cbd5e1;
}

.tymm-opt-label {
    font-weight: bold;
    background: #cbd5e1;
    color: #0f172a;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 16px;
    flex-shrink: 0;
}

.tymm-opt-text {
    flex-grow: 1;
    font-size: inherit; /* Seçenek metinlerini de diğer metinlerle aynı boyuta getirir */
}

.tymm-option.correct {
    background-color: #f0fdf4;
    border-color: #22c55e;
}
.tymm-option.correct .tymm-opt-label {
    background-color: #22c55e;
    color: white;
}

.tymm-option.wrong {
    background-color: #fef2f2;
    border-color: #ef4444;
}
.tymm-option.wrong .tymm-opt-label {
    background-color: #ef4444;
    color: white;
}

.tymm-option.disabled {
    pointer-events: none;
    opacity: 0.6;
}
.tymm-option.correct.disabled {
    opacity: 1; 
}

/* Soru İçi Aksiyon ve Çözüm Butonları */
.tymm-action-area {
    margin-top: 24px;
    border-top: 1px dashed #cbd5e1;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.tymm-btn-cozum {
    background-color: #3b82f6;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 1rem; /* Buton yazısını da biraz büyütebiliriz */
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.tymm-btn-cozum:hover { background-color: #2563eb; }

.tymm-cozum-box {
    width: 100%;
    margin-top: 10px;
    background-color: #eff6ff;
    border-left: 4px solid #3b82f6;
    padding: 16px;
    border-radius: 0 8px 8px 0;
    font-size: inherit; /* Çözüm metni boyutu eşitlendi */
    color: #1e3a8a;
    animation: fadeIn 0.3s ease;
}
/* Navigasyon Buton Stilleri */
.tymm-btn-next-slide, .tymm-btn-prev-slide, .tymm-btn-finish {
    background-color: #008c8c;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 1rem; /* Gezinme butonlarının metni de orantılı büyütüldü */
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    box-shadow: 0 2px 4px rgba(0, 140, 140, 0.15);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}