body {
    background-color: #e9ecef;
    font-family: 'Poppins', sans-serif;
}

h1 {
    color: #093666;
    margin-bottom: 20px;
    font-family: "Edu AU VIC WA NT Guides", cursive;
    font-weight: 700;
}

.porte, .empty-porte {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 100px;
    border: 2px solid #007bff;
    border-radius: 10px;
    background-color: #f6ffed;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    margin-bottom: 20px;
}

.note, .note-slot {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    color: #495057;
}

.note {
    transition: color 0.3s ease;
}

.note:hover {
    color: #007bff; /* Hover rengi */
}

#pointer {
    font-size: 50px; /* İkon boyutu */
    position: absolute;
    top: -25px; /* İkonun üstten konumu */
    left: 0; /* Başlangıç konumu */
    transform: translateX(-20%); /* İkonu tam ortalamak için sola kaydır */
    transition: left 0.5s ease-in-out;
    z-index: 9999;
    will-change: transform, left;
}

.note-buttons {
    display: flex;
    justify-content: space-around;
}

.note-btn {
    background-color: #0b507e;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.note-btn:hover {
    background-color: #0056b3; /* Buton hover rengi */
}


/* Mobil için stil */
@media (max-width: 768px) {
    .note-buttons {
        display: flex;
        
        justify-content: space-around; /* Butonlar arasında eşit boşluk bırak */
    }

    .note-btn {
        flex: 1 1 30%; /* Her butonun genişliği ekranın %30'u kadar olsun */
        margin: 5px; /* Butonlar arasında boşluk */
        font-size: 14px; /* Buton yazı boyutunu küçült */
        padding: 8px 10px; /* Buton yüksekliğini küçült */
    }
}


.note-slot {
    width: 60px;
    height: 60px;
    border: 2px dashed #6c757d; /* Boş portedeki kutular için kenar rengi */
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #6c757d; /* Varsayılan yazı rengi */
    transition: color 0.3s;
}

.note-slot.green {
    color: green; /* Doğru seçim rengi */
}

.note-slot.red {
    color: red; /* Yanlış seçim rengi */
}

.modal-content {
    border-radius: 10px;
}

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

.modal-body {
    text-align: center;
    font-size: 18px;
}

/* Puan Tablosu Stilleri */
.table-container {
    background-color: #ffffff; /* Beyaz arka plan */
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); /* Daha belirgin gölge */
    margin-top: 20px;
    overflow: hidden; /* Kenarları yuvarlatmak için taşmaları gizle */
    font-weight: 700;
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table th, .table td {
    padding: 12px;
    text-align: center;
    font-family: 'Arial', sans-serif;
}

.table th {
    background-color: #0f0f0f; /* Başlık rengi */
    color: white;
    font-size: 1.2rem; /* Başlık boyutu */
    text-transform: uppercase; /* Harfleri büyük yap */
    letter-spacing: 1px; /* Harfler arasında boşluk */
}

.table tbody tr:nth-child(odd) {
    background-color: #e9ecef; /* Alternatif satırlar için açık gri */
}

.table tbody tr:nth-child(even) {
    background-color: #ffffff; /* Alternatif satırlar için beyaz */
}

.table tbody tr:hover {
    background-color: #007bff; /* Hover efekti */
    color: white; /* Hoverda yazı rengi beyaz olsun */
}

.table td {
    border-bottom: 1px solid #dee2e6; /* Satır altı çizgisi */
    transition: background-color 0.3s, color 0.3s; /* Hover geçişi */
}

/* Tablo kenarlarını yuvarlatma */
.table-container .table {
    border-radius: 10px;
    overflow: hidden; /* Kenarları yuvarlatmak için taşmaları gizle */
}

.table tbody tr:last-child td {
    border-bottom: none; /* Son satır için alt çizgiyi kaldır */
}



