/* Math Game için özel stil düzenlemeleri */
.math-game-body {
    font-family: 'Comic Sans MS', sans-serif;
    display: flex;
    justify-content: flex-start;  /* Üstte hizalama */
    align-items: center; 
    flex-direction: column;
    overflow: hidden;
    margin: 0; /* Sayfanın kenarlarında boşluk bırakmamak için */
}

/* Oyun alanı (game-container) stil ayarları */
.game-container {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 360px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;  /* İçeriği yukarıya hizalama */
    align-items: center;
    max-height: 80vh;  /* Oyun kutusunun yüksekliğini sınırlıyoruz */
    overflow: auto; /* Gerektiğinde scroll bar'ı açıyoruz */
	margin-bottom: 10px;
	margin-top: 65px;
	
}

/* Hint öğesi için düzenleme */
#hint {
    position: fixed;
    top: 180px;  /* Hint, log container'dan yukarıda olacak */
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 20;
    display: none;  /* Başlangıçta gizli */
}

.question {
    font-size: 2.5em;
    color: #00796b;
    margin-bottom: 20px;
}

.answer-input {
    font-size: 1.8em;
    padding: 10px;
    width: 100px;
    text-align: center;
    border: 2px solid #00796b;
    border-radius: 8px;
    outline: none;
}

.log-container {
    margin-top: 20px;
    width: 320px;
    height: 150px;
    overflow-y: auto;
    background-color: #f1f8e9;
    border: 2px solid #c5e1a5;
    padding: 15px;
    border-radius: 10px;
    text-align: left;
}

.log-entry {
    color: #33691e;
    font-size: 1.1em;
    margin-bottom: 5px;
}

/* Emoji */
.emoji {
    font-size: 3em;
    margin-top: 10px;
}

/* Zorluk Seviye Seçimi */
.difficulty-select {
    margin-top: 20px;
    padding: 10px;
    font-size: 1.2em;
    border-radius: 8px;
    border: 2px solid #00796b;
    outline: none;
}

/* Download Button */
.download-btn {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #00796b;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.2em;
    cursor: pointer;
}

.download-btn:hover {
    background-color: #004d40;
}
