/*
 Theme Name: Astra Child
 Theme URI: https://example.com
 Description: Astra için child theme
 Author: Samet Baysal
 Template: astra
 Version: 1.0.0
*/

/* Buraya istersen kendi CSS’lerini ekleyeceksin */

/* Buton altı çizili kısmı kaldırma */
.tutor-course-enroll-form a,
.tutor-loop-course-container a.tutor-btn,
.tutor-btn, 
.tutor-btn-primary,
.tutor-btn-secondary {
    text-decoration: none !important;
}


/* TUTOR LMS MODAL KATMAN VE ORTALAMA DÜZELTMESİ */
/* Overlay karanlığı sabitle */
.tutor-overlay {
    position: fixed !important;
    inset: 0 !important; /* top/right/bottom/left: 0 */
    z-index: 999998 !important;
}

/* Modal katmanını tüm ekrana sabitle (göster/gizle işini Tutor'a bırakıyoruz) */
.tutor-modal {
    position: fixed !important;
    inset: 0 !important;
    z-index: 999999 !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Modal AÇIKKEN ortalamak için – hangi class'ı kullanıyorsa yakalasın diye 3 ihtimali birlikte yazıyoruz */
.tutor-modal.tutor-is-active,
.tutor-modal.tutor-modal-open,
.tutor-modal.show {
    align-items: center !important;
    justify-content: center !important;
}

/* İç kutu – hep modalın üstünde olsun, mobilde de taşmasın */
.tutor-modal .tutor-modal-inner,
.tutor-modal .tutor-modal-content {
    position: relative;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow: auto;
    background: #ffffff;
    z-index: 1000000 !important;
    border-radius: 8px;
}

