 /* Sticky Bar Düzeltmesi */
   .sticky-bar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        display: flex;
        align-items: center;
        padding: 2px 5px;
        background-color: #ffffff;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .sticky-bar span {
	font-family: 'Arial', sans-serif; /* İstediğiniz fontu buraya yazabilirsiniz */
font-size: 15px;
	font-weight: 900; /* Kalın */
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

	
	
   body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
	 padding-top: 60px; /* Sticky bar yüksekliği kadar üst boşluk */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #f5f5f5; /* Açık arka plan */
    color: #333333; /* Metin için koyu renk */
}



.container {
    width: 90%;
    max-width: 400px;
    background: #ffffff; /* Açık konteyner arka planı */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Hafif gölge */
    overflow: hidden;
	 margin: 20px auto; /* Ortalama ve sticky bar ile mesafe */
}

.header {
    background: #007bff; /* Başlık için mavi arka plan */
    color: white;
    padding: 1rem;
    text-align: center;
}

.test-selector, .question-container {
    padding: 1rem;
    text-align: center;
}

button {
    display: block;
    width: 100%;
    margin: 10px 0;
    padding: 10px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

button:hover {
    background: #0056b3;
}

button.locked {
    background: #dddddd;
    cursor: not-allowed;
    color: #888888;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center; /* Yazıyı ortala */
    padding: 10px 0; /* Dikey hizalama için padding */
}

button.locked::before {
    content: '\1F512'; /* Unicode kilit simgesi */
    position: absolute;
    left: 10px; /* Kilidi butonun soluna dayalı yap */
    font-size: 1.2rem;
    color: #666;
}



.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Hafif saydam modal */
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: #ffffff;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    color: #333;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.modal-content img {
    max-width: 60%;
    height: auto;
    margin-top: 10px;
}

.modal button {
    background: #007bff;
    color: white;
}

.close-test {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.2rem;
    color: white;
    cursor: pointer;
    background: #007bff;
    border: none;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: background 0.3s, transform 0.2s;
    z-index: 10;
}

.close-test:hover {
    background: #0056b3;
    transform: scale(1.1);
}

.question-counter {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 1rem;
    color: white;
    background: #007bff;
    padding: 5px 10px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.previous-question {
    font-size: 1rem;
    color: white;
    background: #6c757d;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    margin-top: 15px;
}

.previous-question:hover {
    background: #0056b3;
    transform: scale(1.05);
}

.previous-question i {
    margin-right: 5px;
    font-style: normal;
    font-size: 1.2rem;
}

/* Yeşile yavaş yavaş geçiş efekti */
.correct-answer {
    background-color: #28a745 !important;
    color: white !important;
    transition: background-color 0.8s ease-in-out; /* Renk değişimini yumuşak hale getir */
}

.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    border-top: 1px solid #ddd;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 0;
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
	z-index: 1000;
}

.bottom-nav a {
    text-decoration: none;
    color: #007bff;
    font-size: 0.9rem;
    text-align: center;
}

.bottom-nav a:hover {
    color: #0056b3;
}

.bottom-nav a span {
    display: block;
    font-size: 0.8rem;
}

.bottom-nav-icon {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin-top: 10px;
}

.question-container img {
    display: block;
    margin: 20px auto;
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    text-align: center;
}



    /* Dark Mode Toggle Butonu */
    .dark-mode-toggle {
        background: none;
        border: none;
        font-size: 24px;
        cursor: pointer;
        color: #6C63FF;
        padding: 0; /* Padding'i sıfırla */
        margin-left: auto; /* Sağa yasla */
		margin-right: 30px; /* Sağa olan boşluğu azalt */
        width: 40px; /* Sabit genişlik */
        height: 40px; /* Sabit yükseklik */
        display: flex;
        align-items: center;
        justify-content: center;
    }
	
	
	/* Hover efekti sadece simge için */
    .dark-mode-toggle:hover {
        background: rgba(108, 99, 255, 0.1);
        border-radius: 50%;
    }
	
    /* Dark Mode Stilleri */
    body.dark-mode {
        background: #1a1a1a;
        color: #ffffff;
    }

    body.dark-mode .container {
        background: #2d2d2d;
        color: #ffffff;
    }

    body.dark-mode .sticky-bar {
        background-color: #2d2d2d;
        color: #6C63FF;
        box-shadow: 0 4px 6px rgba(255, 255, 255, 0.1);
    }

    body.dark-mode button:not(.locked) {
        background: #6C63FF;
        color: white;
    }

    body.dark-mode button.locked {
        background: #444;
        color: #888;
    }

    body.dark-mode .bottom-nav {
        background: #2d2d2d;
        border-color: #444;
    }

    body.dark-mode .modal-content {
        background: #2d2d2d;
        color: white;
    }


/* Dark Mode için Ekstra Stil */
    body.dark-mode .sticky-bar {
        background-color: #2d2d2d;
        box-shadow: 0 4px 6px rgba(255, 255, 255, 0.1);
    }
	
	
	/* Dark mode için önceki soru butonu rengi (Light mod ile aynı olacak) */
body.dark-mode .previous-question {
    background: #6c757d !important; /* Light mod ile aynı renk */
    color: white !important;
}

body.dark-mode .previous-question:hover {
    background: #5a6268 !important; /* Hover için de aynı renk */
}

