/* :root {
    --primary-color: #edf6f9;  
    --secondary-color: #e29578;  
    --background-color: #4a4a4a;  
    --card-background: linear-gradient(135deg, #FFD700, #f8d75e);  
    --text-color: #333;
    --success-color: #4CAF50;
    --border-radius: 15px;
    --box-shadow: 0 10px 20px rgba(0,0,0,0.2);
} */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #edf6f9;
    min-height: 100vh;
}

::placeholder {
    color: white;
}

/* Login Sayfası */
.login-container {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.login-card {
    background: #4a4a4a;
    width: 100%;
    max-width: 400px;
    padding: 40px 30px;
    border-radius: 30px;
    text-align: center;
    background-size: cover;
}

.background-img {
    background-size: cover;
    transition: background-image 1s ease-in-out;
    background-position: center;
}

.logo-container {
    margin-bottom: 30px;
}

.logo {
    width: 120px;
    height: auto;
}

h2 {
    color: #e29578;
    font-size: 24px;
    margin-bottom: 30px;
}

h1 {
    color: #edf6f9;
    margin-bottom: 30px;
    font-size: 28px;
}

.input-group {
    margin-bottom: 20px;
    text-align: center;
}

    .input-group label {
        display: none;
    }

input {
    width: 95%;
    padding: 15px;
    border: none;
    background: none;
    font-size: 16px;
    border-bottom: 2px solid #edf6f9;
    transition: border-color 0.3s;
}

    input:focus {
        outline: none;
        border-bottom-color: #e29578;
    }

.input2 {
    width: 80%;
    padding: 15px;
    border: none;
    background: none;
    font-size: 16px;
    border-bottom: 2px solid #edf6f9;
    transition: border-color 0.3s;
}

 

/*    input::placeholder {
    color: #888; 
    font-style: italic; 
} */

.inputt {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 12px;
    background: #ffffff;
    font-size: 16px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.login-btn {
    width: 95%;
    padding: 15px;
    background: white;
    border: none;
    border-radius: 100px;
    font-size: 16px;
    color: #333;
    cursor: pointer;
    margin: 30px 0 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}

.login-btn2 {
    width: 60%;
    padding: 10px 20px;
    background-color: #D11B22;
    border: none;
    border-radius: 0px;
    font-size: 14px;
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    text-align: center;
    cursor: pointer;
    margin: 5px 0 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}

.examcreate-btn {
    width: auto;
    padding: 10px 15px;
    background-color: #006d77;
    border: none;
    border-radius: 0px;
    font-size: 14px;
    color: white;
    display: block;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    text-align: center;
    cursor: pointer;
    margin: 5px 0 15px;
    margin-left: auto; /* Butonu sağa hizala */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.2s;
    white-space: nowrap;
}

    .examcreate-btn:hover {
        transform: translateY(-2px);
    }

.new-exam {
    width: auto;
    padding: 8px 13px;
    background-color: #4CAF50;
    border: none;
    border-radius: 0px;
    font-size: 14px;
    color: white;
    display: block;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    text-align: center;
    cursor: pointer;
    margin-left: auto; /* Butonu sağa hizala */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.2s;
    white-space: nowrap;
    font-weight: 500;
}

    .new-exam:hover {
        transform: translateY(-2px);
        background: #388e3c;
    }

.login-btn2:hover {
    transform: translateY(-2px);
}

.login-btn:hover {
    transform: translateY(-2px);
}

.forgot-password {
    color: #edf6f9;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 40px;
    display: inline-block;
}

.footer-text {
    margin-top: 60px;
    font-size: 14px;
    color: white;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    body {
        background: #edf6f9;
    }

    .login-container {
        padding: 0;
    }

    .login-card {
        max-width: none;
        min-height: 100vh;
        border-radius: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        background: none;
        box-shadow: none;
        background-size: cover;
    }

    .app-header {
        position: sticky;
        top: 0;
    }

    .question-card {
        margin-bottom: 15px;
    }

    .option {
        padding: 10px;
    }

    .content-container {
        padding: 20px 15px;
        max-width: 400px;
    }

    select {
        font-size: 15px;
    }
}

.app-header {
    background: #006d77;
    padding: 20px;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1025px;
    margin: 0 auto;
    padding: 0 15px;
}

.back-button {
    font-size: 24px;
    cursor: pointer;
    color: white;
}

.lesson-info {
    text-align: center;
}

.lesson-info2 {
    display: flex;
    flex-wrap: wrap; /* Haftanın ve ders isminin doğru hizalanması için */
    gap: 10px; /* Öğeler arasındaki boşluk */
}

.lesson-info3 {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.lesson-info h3 {
    color: #e29578;
    margin-bottom: 5px;
}

.menu-dots {
    font-size: 24px;
    color: white;
    cursor: pointer;
    z-index: 9999;
}

.content-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px 15px;
    flex-grow: 1;
}

.question-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.question-number {
    width: 30px;
    height: 30px;
    background: #006d77;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-weight: bold;
    color: white;
}

.question-text {
    margin-bottom: 20px;
    font-size: 16px;
}

.options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.options2 {
    display: flex; /*doğru yanlış */
    gap: 10px;
}

.option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #edf6f9;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

    .option:hover {
        background: #ebebeb;
        transform: translateX(5px);
    }

    .option input[type="radio"] {
        display: none;
    }

        .option input[type="radio"]:checked + .custom-radio {
            background: #e29578;
            color: white;
        }

.option-text {
    color: #e29578;
    font-weight: 500;
}

.custom-radio {
    min-width: 35px;
    min-height: 35px;
    background: white;
    border: 2px solid #e29578;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #e29578;
    transition: all 0.2s;
}

.custom-radio2 {
    min-width: 20px; /*doğru yanlış buton boyutu*/
    min-height: 20px;
}

.textareaa {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    border: 2px solid #ccc;
    border-radius: 5px;
    background-color: white;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

    .textareaa::placeholder {
        color: #888;
        font-style: italic;
    }

    .textareaa:hover {
        border-color: #006d77;
    }


.textareaa2 {
    width: 100%;
    height: 2.6rem;
    padding: 10px;
    font-size: 15px;
    border: 2px solid #ccc;
    border-radius: 5px;
    background-color: white;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

    .textareaa2::placeholder {
        color: #888;
        font-style: italic;
    }

    .textareaa2:hover {
        border-color: #006d77;
    }


.save-btn {
    width: 100%;
    background: #006d77;
    color: #ffffff;
    padding: 15px;
    border: none;
    border-radius: 100px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}

    .save-btn:hover {
        transform: translateY(-2px);
    }

.user-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.profile-pic {
    width: 35px;
    height: 35px;
    border-radius: 50%;
}

.lessons-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px 15px;
}

.lesson-item {
    background: #ffffff;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.lesson-week {
    font-size: 14px;
    color: #666;
    display: flex; /* Hafta kısmını aynı satırda tutmak için */
    gap: 3px; /* "Hafta" ve "3" arasındaki boşluk */
}

.lesson-name {
    font-size: 16px;
    font-weight: 500;
    display: inline; /* Ders isminin aynı satırda kalması için */
}

.lesson-details {
    font-size: 14px;
    color: #666;
}

.lesson-status {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
}

    .lesson-status.active {
        color: white;
    }

    .lesson-status.completed {
        color: white;
    }

.status-icon {
    width: 20px;
    height: 20px;
}

.teacher-interface {
    min-height: 100vh;
}

.form-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

.publish-btn {
    background: #006d77;
    color: #ffffff;
    padding: 15px;
    border: none;
    border-radius: 100px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}

    .publish-btn:hover {
        transform: translateY(-2px);
    }

select {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 12px;
    background: #ffffff;
    font-size: 16px;
    appearance: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    cursor: pointer;
}

.select-group {
    position: relative;
    margin-bottom: 20px;
}

.select-arrow {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: white;
}

.select-btn {
    width: 100%;
    padding: 15px;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ccc;
    border-radius: 12px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    max-height: 200px;
    overflow-y: auto;
    margin-top: 5px;
}

    .dropdown-content a {
        padding: 8px 16px;
        text-decoration: none;
        display: block;
        color: black;
    }

        .dropdown-content a:hover {
            background-color: #f1f1f1;
        }


    .dropdown-content.active {
        display: block;
    }

.arrow-down {
    font-size: 16px;
}

.soru-btn {
    cursor: pointer;
    border: none;
    background-color: white;
    position: relative;
    border-radius: 5px;
}

    .soru-btn:active {
        background-color: aqua;
    }

    .soru-btn:hover::after {
        content: "Soru Oluştur";
        position: absolute;
        top: -30px;
        left: 50%;
        transform: translateX(-50%);
        background-color: rgba(0, 0, 0, 0.75);
        color: white;
        padding: 5px 10px;
        border-radius: 5px;
        font-size: 14px;
        white-space: nowrap;
        opacity: 1;
        transition: opacity 0.3s ease-in-out;
    }

.update-btn {
    cursor: pointer;
    border: none;
    background-color: white;
    position: relative;
    border-radius: 5px;
}

    .update-btn:active {
        background-color: aqua;
    }

    .update-btn:hover::after {
        content: "Güncelle";
        position: absolute;
        top: -30px;
        left: 50%;
        transform: translateX(-50%);
        background-color: rgba(0, 0, 0, 0.75);
        color: white;
        padding: 5px 10px;
        border-radius: 5px;
        font-size: 14px;
        white-space: nowrap;
        opacity: 1;
        transition: opacity 0.3s ease-in-out;
    }

a.link {
    width: 60%;
    text-decoration: none;
    color: black;
    transition: transform 0.2s;
}

    a.link:hover {
        color: #e29578;
        transform: translateY(2px);
    }

.exam-name {
    font-size: 16px;
    font-weight: 500;
    word-break: break-word; /* Kelimeleri düzgün şekilde keser */
}

.user-option {
    width: 15%;
    padding: 5px;
    font-size: 16px;
    border: 2px solid #ccc;
    border-radius: 5px;
    background-color: white;
    margin-bottom: 20px;
    text-align: center;
}








/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */




.btn-primary {
    background-color: #006d77;
    color: white;
}

    .btn-primary:hover {
        background-color: #005c64;
        transform: translateY(-2px);
        box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    }

.btn-secondary {
    background-color: #e29578;
    color: white;
}

    .btn-secondary:hover {
        background-color: #e28578;
        transform: translateY(-2px);
        box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    }

.btn-tertiary {
    background-color: #34a5a5;
    color: white;
}

    .btn-tertiary:hover {
        background-color: #09a9a9;
        transform: translateY(-2px);
        box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    }

.btn-fourth {
    background-color: #00a77a;
    color: white;
}

    .btn-fourth:hover {
        background-color: #00966e;
        transform: translateY(-2px);
        box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    }


.content-container2 {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
    width: 100%;
}


.lessons-container2 {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
    width: 100%;
    overflow-x: auto;
}




/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */



.table {
    width: 100%;
    min-width: 1000px; /* Minimum genişlik */
    border-collapse: collapse;
    margin-top: 20px;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

    .table th,
    .table td {
        padding: 8px 8px;
        text-align: left;
        border-bottom: 1px solid #edf6f9;
        white-space: nowrap;
        font-size: 15px;
    }


    .table th {
        background-color: #006d77;
        color: white;
        font-weight: 500;
        font-size: 14px;
        letter-spacing: 0.5px;
    }


    .table tr:hover {
        background-color: #f8f9fa;
        transition: background-color 0.3s ease;
    }

    .table td button {
        margin-right: 10px;
        padding: 10px 20px;
        font-size: 14px;
        border-radius: 8px;
        transition: all 0.3s ease;
        border: none;
        cursor: pointer;
        font-weight: 500;
    }




.content-container2 h3 {
    color: #e29578; /*#006d77*/
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center;
}





@media (max-width: 1200px) {
    .lessons-container2 {
        padding: 15px;
    }
}

@media (max-width: 768px) {
    .lessons-container2 {
        padding: 10px;
    }

        .lessons-container2 .table th,
        .lessons-container2 .table td {
            padding: 12px 15px;
            font-size: 13px;
        }

        .lessons-container2 .btn {
            padding: 6px 15px;
            font-size: 13px;
        }

    /* .content-container2 h3 {
        font-size: 19px;
   } */

}



/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/



.lessons-container3.ders-list {
    max-width: 600px;
    margin: 0 auto;
}

    .lessons-container3.ders-list .table {
        min-width: auto;
    }

        .lessons-container3.ders-list .table td:last-child {
            display: flex;
            gap: 10px;
            justify-content: flex-start;
            align-items: center;
        }



        .lessons-container3.ders-list .table td button:first-child {
            background-color: #006d77;
            color: white;
        }

        .lessons-container3.ders-list .table td button:last-child {
            background-color: #e29578;
            color: white;
        }









@media screen and (max-width: 768px) {

    .lessons-container3 {
        padding: 10px;
        overflow-x: auto;
    }

        .lessons-container3 .table th,
        .lessons-container3 .table td {
            padding: 12px 15px;
            font-size: 13px;
        }

        .lessons-container3 .login-btn {
            padding: 6px 15px;
            font-size: 14px;
        }
}

.info {
    font-size: 18px;
    font-weight: 600;
    word-break: break-word;
    margin-left: 1.6rem;
    ;
    color: #778da9;
}

.info2 {
    font-size: 18px;
    font-weight: 500;
    color: black;
    word-break: break-word;
}

/*card style */

.card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 360px;
    overflow: hidden;
}

.card-header {
    background: #4f46e5;
    color: #ffffff;
    padding: 16px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
}

.card-content {
    padding: 16px;
}

.card-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

    .card-item:last-child {
        margin-bottom: 0;
    }

.card-item-icon {
    margin-right: 12px;
    color: #4f46e5;
}

.card-item-text {
    flex-grow: 1;
}

.card-item-text-title {
    font-size: 14px;
    color: #888888;
    margin: 0;
}

.card-item-text-value {
    font-size: 16px;
    color: #333333;
    margin: 0;
}



/*ANASAYFA CSS -----------------------------------*/ ---


body {
    background: linear-gradient(135deg, #edf6f9 0%, #b2f7ef 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

.main-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1;
    padding-top: 40px;
    padding-bottom: 40px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 32vw;
    min-height: 180px;
    max-height: 350px;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.waves {
    width: 100vw;
    height: 100%;
    min-height: 180px;
    max-height: 350px;
    animation: waveMove 8s linear infinite alternate;
    display: block;
}

@keyframes waveMove {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50px);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    margin-top: 10vw;
    text-align: center;
    color: #006d77;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.main-logo {
    width: 18vw;
    min-width: 70px;
    max-width: 140px;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.08));
    animation: logoPop 1.2s cubic-bezier(.68,-0.55,.27,1.55) 1;
}

@keyframes logoPop {
    0% {
        transform: scale(0.7);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.hero-content h1 {
    font-size: clamp(1.5rem, 5vw, 2.7rem);
    font-weight: 700;
    margin-bottom: 18px;
    color: #006d77;
    letter-spacing: 1px;
    font-family: none;
}

.hero-desc {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: #333;
    margin-bottom: 32px;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    font-family: none;
}

.hero-btn {
    display: inline-block;
    background: linear-gradient(90deg, #006d77 60%, #e29578 100%);
    color: #fff;
    padding: 1em 2.5em;
    border-radius: 30px;
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    transition: background 0.3s, transform 0.2s;
    animation: btnPop 1.5s cubic-bezier(.68,-0.55,.27,1.55) 1;
    margin-bottom: 10px;
    font-family: none;
}

    .hero-btn:hover {
        background: linear-gradient(90deg, #e29578 60%, #006d77 100%);
        transform: translateY(-3px) scale(1.04);
        cursor: pointer;
    }

.main-footer {
    width: 100%;
    text-align: center;
    padding: 30px 0 10px 0;
    color: #888;
    font-size: 15px;
    background: none;
}

@media (max-width: 900px) {
    .main-hero {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .hero-content {
        margin-top: 16vw;
        max-width: 95vw;
    }

    .main-logo {
        width: 22vw;
        max-width: 110px;
    }
}

@media (max-width: 600px) {
    .main-hero {
        min-height: 60vh;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .hero-bg {
        display: none !important;
    }

    .waves {
        display: none !important;
    }

    .hero-content {
        margin-top: 60px;
        padding: 0 8px;
    }

    .main-logo {
        width: 80px;
        min-width: 50px;
        max-width: 90px;
    }

    .hero-btn {
        padding: 10px 18px;
        font-size: 0.98rem;
    }

    .main-footer {
        font-size: 13px;
        padding: 18px 0 6px 0;
    }
}

@media (max-width: 400px) {
    .hero-content h1 {
        font-size: 1.1rem;
    }

    .main-logo {
        width: 55px;
    }
}


/*---------------------------------------------------------------------------*/





.question-timer {
    position: fixed;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: #4f46e5;
    color: white;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: background-color 0.5s ease;
}

.circle-timer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.timer-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.3);
    stroke-width: 5;
}

.timer-progress {
    fill: none;
    stroke: white;
    stroke-width: 5;
    stroke-linecap: round;
    stroke-dasharray: 0;
    stroke-dashoffset: 0;
}

.timer-value {
    position: relative;
    font-size: 16px;
    font-weight: bold;
    color: white;
    z-index: 1;
    pointer-events: none;
}

.pulse {
    animation: pulse-animation 1s infinite;
}

@keyframes pulse-animation {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

.question-btn {
    width: 49%;
    background: #006d77;
    color: #ffffff;
    padding: 10px;
    border: none;
    border-radius: 100px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.2s;
    
}

    .question-btn:hover {
        transform: translateY(-2px);
    }


.question-btn2 {
    background: #006d77;
    color: #ffffff;
    padding: 10px;
    border: none;
    border-radius: 100px;
    font-size: 16px;
    cursor: pointer;
    margin-left: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}

    .question-btn2:hover {
        transform: translateY(-2px);
    }




/*sinavlist2 -----------*/

.dropdown2 {
    position: relative;
    display: inline-block;
}

.dropdown-content2 {
    display: none;
    position: fixed; 
    background: #fff;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    border-radius: 8px;
    z-index: 9999;
    padding: 8px 0;
    min-width: 160px;
    max-height: 60vh; 
    overflow-y: auto;
}


    .dropdown-content2 a {
        display: block;
        padding: 10px 18px;
        color: #333;
        text-decoration: none;
        font-size: 15px;
    }

        .dropdown-content2 a:hover {
            background: #e29578;
            color: #fff;
            cursor: pointer;
        }

.dropdown2 .login-btn {
    width: 100%;
    text-align: left;
    border-radius: 8px;
}

.dropdown-content2.active {
    display: block;
    opacity: 1;
}

.dropdown-arrow {
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #fff;
    margin-left: 4px;
    transition: transform 0.2s;
}

@media (max-width: 600px) {
    .dropdown-content2 {
        min-width: 120px;
        font-size: 14px;
        right: auto;
        left: 0;
    }
}

/*sinavekle ---------------------*/

.exam-form-container {
    max-width: 600px;
    margin: 40px auto;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    padding: 32px 24px 24px 24px;
}

    .exam-form-container h1 {
        color: #006d77;
        font-size: 1.6rem;
        font-weight: 700;
        margin-bottom: 28px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

.form-group {
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 18px;
}

    .form-group label {
        flex: 0 0 160px;
        color: #333;
        font-weight: 500;
        font-size: 1rem;
        display: flex;
        align-items: center;
        gap: 7px;
    }

    .form-group input[type="text"],
    .form-group input[type="date"],
    .form-group input[type="time"] {
        flex: 1;
        padding: 12px 14px;
        border: 1.5px solid #e0e0e0;
        border-radius: 8px;
        font-size: 1rem;
        background: #f8fafc;
        transition: border 0.2s;
    }

        .form-group input[type="text"]:focus,
        .form-group input[type="date"]:focus,
        .form-group input[type="time"]:focus {
            border: 1.5px solid #006d77;
            outline: none;
        }

    .form-group input[type="checkbox"] {
        width: 20px;
        height: 20px;
        accent-color: #006d77;
        margin-right: 8px;
    }

.form-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 30px;
}

    .form-actions .login-btn {
        min-width: 110px;
        padding: 12px 0;
        font-size: 1rem;
        display: flex;
        align-items: center;
        gap: 7px;
        justify-content: center;
    }

        .form-actions .login-btn i {
            font-size: 1.1em;
        }

@media (max-width: 600px) {
    .exam-form-container {
        padding: 18px 6px 16px 6px;
    }

    .form-group {
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
    }

        .form-group label {
            flex: none;
            margin-bottom: 2px;
            justify-content: flex-start;
        }

    .form-actions {
        flex-direction: column;
        gap: 8px;
    }
}

/*uservisitlist*/

.visitlist-container {
    max-width: 1100px;
    margin: 40px auto;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    padding: 32px 24px 24px 24px;
}

    .visitlist-container h3 {
        color: #006d77;
        font-size: 1.3rem;
        font-weight: 700;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .visitlist-container h4 {
        color: #e29578;
        font-size: 1.1rem;
        margin-bottom: 6px;
        font-weight: 600;
    }

    .visitlist-container h5 {
        color: #888;
        font-size: 1rem;
        margin-bottom: 18px;
        font-weight: 400;
    }

.visitlist-table {
    margin-top: 18px;
    overflow-x: auto;
}

    .visitlist-table .table {
        min-width: 700px;
        width: 100%;
        background: #fff;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 2px 5px rgba(0,0,0,0.07);
    }

    .visitlist-table th {
        background: #006d77;
        color: #fff;
        font-weight: 500;
        font-size: 15px;
        padding: 12px 10px;
        text-align: left;
    }

    .visitlist-table td {
        padding: 12px 10px;
        font-size: 15px;
        color: #333;
        vertical-align: middle;
    }

.visitlist-status {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-block;
    border: 2px solid #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.07);
}

.status-orange {
    background: orange;
}

.status-green {
    background: #4CAF50;
}

.status-red {
    background: #D11B22;
}

.status-blue {
    background: #2196F3;
}

.status-yellow {
    background: yellow;
}

.btn-success {
    background: #4CAF50;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 8px 18px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}

    .btn-success:hover {
        background: #388e3c;
    }


.btn-update {
    background: #ffae00;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 8px 18px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}

    .btn-update:hover {
        background: #ffcd00;
    }


.btn-danger {
    background: #D11B22;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 8px 18px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}

    .btn-danger:hover {
        background: #a3121a;
    }

@media (max-width: 700px) {
    .visitlist-container {
        padding: 12px 2px 10px 2px;
    }

    .visitlist-table th, .visitlist-table td {
        font-size: 13px;
        padding: 8px 4px;
    }
}

/*sorulist*/

.sorulist-container {
    max-width: 1300px;
    margin: 40px auto;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    padding: 32px 24px 24px 24px;
}

    .sorulist-container h3 {
        color: #006d77;
        font-size: 1.3rem;
        font-weight: 700;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .sorulist-container h4 {
        color: #e29578;
        font-size: 1.1rem;
        margin-bottom: 6px;
        font-weight: 600;
    }

.sorulist-table {
    margin-top: 18px;
    overflow-x: auto;
}

    .sorulist-table .table {
        width: 100%;
        background: #fff;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 2px 5px rgba(0,0,0,0.07);
        table-layout: fixed;
    }

    .sorulist-table th, .sorulist-table td {
        word-break: break-word;
        white-space: normal;
    }

        .sorulist-table th:nth-child(1), .sorulist-table td:nth-child(1) {
            width: 40px;
        }

        .sorulist-table th:nth-child(2), .sorulist-table td:nth-child(2) {
            width: 90px;
        }

        .sorulist-table th:nth-child(3), .sorulist-table td:nth-child(3) {
            width: 38%;
        }

        .sorulist-table th:nth-child(4), .sorulist-table td:nth-child(4) {
            width: 220px;
        }

    .sorulist-table th {
        background: #006d77;
        color: #fff;
        font-weight: 500;
        font-size: 15px;
        padding: 12px 10px;
        text-align: left;
    }

    .sorulist-table td {
        padding: 12px 10px;
        font-size: 15px;
        color: #333;
        vertical-align: middle;
    }

    .sorulist-table input[type="number"] {
        width: 70px;
        padding: 6px 8px;
        border-radius: 6px;
        border: 1.2px solid #e0e0e0;
        font-size: 1rem;
        background: #f8fafc;
        transition: border 0.2s;
    }

        .sorulist-table input[type="number"]:focus {
            border: 1.2px solid #006d77;
            outline: none;
        }

.btn-success, .btn-danger, .btn-primary2 {
    min-width: 90px;
    margin-bottom: 4px;
}

.btn-primary2 {
    background: #006d77;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 8px 18px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
    margin-right: 6px;
}

    .btn-primary2:hover {
        background: #015158;
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    }

.btn-success {
    background: #4CAF50;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 8px 18px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
    margin-right: 6px;
}

    .btn-success:hover {
        background: #388e3c;
    }

.btn-danger {
    background: #D11B22;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 8px 18px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
    margin-right: 6px;
}

    .btn-danger:hover {
        background: #a3121a;
    }

.btn-new-question {
    background: #4CAF50;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 8px 18px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
    margin-right: 6px;
}

    .btn-new-question:hover {
        background: #388e3c;
    }

.btn-save-score {
    background: #2196F3;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 8px 18px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
    margin-right: 6px;
}

    .btn-save-score:hover {
        background: #1565c0;
    }

@media (max-width: 700px) {
    .sorulist-container {
        padding: 12px 2px 10px 2px;
    }

    .sorulist-table th, .sorulist-table td {
        font-size: 13px;
        padding: 8px 4px;
    }

    .btn-primary2, .btn-success, .btn-danger {
        padding: 7px 10px;
        font-size: 13px;
        min-width: 70px;
    }
}

/*sorucevappuanla*/

.sorucevappuanla-container {
    max-width: 1200px;
    margin: 40px auto;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    padding: 32px 24px 24px 24px;
}

    .sorucevappuanla-container h3 {
        color: #006d77;
        font-size: 1.3rem;
        font-weight: 700;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

.sorucevappuanla-table {
    margin-top: 18px;
    overflow-x: auto;
}

    .sorucevappuanla-table .table {
        width: 100%;
        background: #fff;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 2px 5px rgba(0,0,0,0.07);
        table-layout: fixed;
    }

    .sorucevappuanla-table th, .sorucevappuanla-table td {
        word-break: break-word;
        white-space: normal;
    }

        .sorucevappuanla-table th:nth-child(1), .sorucevappuanla-table td:nth-child(1) {
            width: 40px;
        }

        .sorucevappuanla-table th:nth-child(2), .sorucevappuanla-table td:nth-child(2) {
            width: 120px;
        }

        .sorucevappuanla-table th:nth-child(3), .sorucevappuanla-table td:nth-child(3) {
            width: 30%;
        }

        .sorucevappuanla-table th:nth-child(4), .sorucevappuanla-table td:nth-child(4) {
            width: 160px;
        }

        .sorucevappuanla-table td input[type="number"] {
            width: 110px;
            padding: 8px 10px;
            border-radius: 6px;
            border: 1.2px solid #e0e0e0;
            font-size: 1rem;
            background: #f8fafc;
            transition: border 0.2s;
        }

    .sorucevappuanla-table input[type="number"]:focus {
        border: 1.2px solid #006d77;
        outline: none;
    }

@media (max-width: 700px) {
    .sorucevappuanla-container {
        padding: 12px 2px 10px 2px;
    }

    .sorucevappuanla-table th, .sorucevappuanla-table td {
        font-size: 13px;
        padding: 8px 4px;
    }

        .sorucevappuanla-table td input[type="number"] {
            width: 80px;
            padding: 6px 6px;
        }
}








.datetime-container {
    width: 68%;
}

    .datetime-container .d-flex {
        display: flex;
        gap: 18px;
        flex-wrap: wrap;
    }

 

/* Ekran genişliği 768px altında (mobil/tablet) */
@media (max-width: 768px) {
    .datetime-container {
        width: 95%;
    }

        .datetime-container .d-flex {
            flex-direction: column;
            gap: 6px;
        }

        .datetime-container .form-control {
            width: 100%;
            dropdown-content2
        }
}


.error-message {
    color: #ff4444;
    background-color: rgba(255, 68, 68, 0.1);
    border: 1px solid #ff4444;
    border-radius: 5px;
    padding: 10px;
    margin: 10px 0;
    font-size: 13px;
    /*    display: none;*/
    width: 95%;
    margin: 0 auto 15px auto;
}

.error-message2 {
    color: white;
    background-color: red;
    border: 1px solid darkred;
    border-radius: 5px;
    padding: 8px;
    font-size: 13px;
    /*    display: none;*/
    width: 25%;
    margin: 10px auto 15px auto;
    text-align: center;
}

.info-message {
    color: #ff4444; /*cadetblue*/
    background-color: rgba(255, 68, 68, 0.1); /*aqua*/
    border: 1px solid #ff4444;
    border-radius: 5px;
    padding: 10px;
    font-size: 13px;
    /*    display: none;*/
    width: 95%;
    margin: 10px auto auto auto;
}

.aqua-message {
    color: aqua;
    background-color: #26495f;
    border: 3px solid #ff4444;
    border-radius: 5px;
    padding: 10px;
    font-size: 13px;
    width: 100%;
}


.success-message {
    color: #ff4444;
    background-color: green;
    border: 1px solid #ff4444;
    border-radius: 5px;
    padding: 10px;
    margin: 10px 0;
    font-size: 13px;
    /*    display: none;*/
    width: 95%;
    height: 4rem;
    margin: 0 auto 15px auto;
}

.success-message2 {
    color: white;
    background-color: green;
    border: 1px solid #ff4444;
    border-radius: 5px;
    padding: 8px;
    font-size: 13px;
    /*    display: none;*/
    width: 25%;
    margin: 10px auto 15px auto;
    text-align:center;
}




/* Table Select*/

.table-select {
    padding: 8px 10px;
    border: 1.2px solid #e0e0e0;
    border-radius: 8px;
    background: #f8fafc;
    font-size: 14px;
    min-width: 130px;
    box-shadow: none;
    appearance: none;
    cursor: pointer;
}

   /* .table-select option {
        cursor: pointer;
    }*/

    .table-select:focus {
        border: 1.2px solid #006d77;
        outline: none;
    }

.question-savedq-timer {
    position: fixed;
    top: 75px;
    right: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 38px;
    background: #7ba7bd;
    color: white;
    border-radius: 5%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: background-color 0.5s ease;
    font-weight: bold;
    text-align: center;
}





