/* --- YENİ EKLENENLER: ARAMA VE ROZET TASARIMLARI --- */

/* Toplam Kişi Sayısı Rozeti */
.sayi-rozet {
    background-color: #28a745;
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 15px;
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(40, 167, 69, 0.2);
    animation: popIn 0.3s ease-out; /* Ekrana gelirken hafif zıplama efekti */
}

/* Arama Alanı Tasarımı */
.arama-alani {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #e1e5eb;
    margin-top: 15px;
    text-align: left;
}

.arama-alani label {
    display: block;
    font-weight: bold;
    color: #004085;
    margin-bottom: 8px;
}

#ogrenciArama {
    border-color: #17a2b8;
}

#ogrenciArama:focus {
    border-color: #004085;
    box-shadow: 0 0 5px rgba(0, 64, 133, 0.2);
}

/* Arama Sonuç Kartları */
.ogrenci-arama-kutu {
    background-color: white;
    border-left: 4px solid #17a2b8;
    padding: 12px;
    margin-top: 10px;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.ogrenci-arama-isim {
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
    font-size: 14px;
}

/* Tarih Rozetleri (Yan Yana Dizilim) */
.rozet-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.tarih-rozet {
    background-color: #e2e3e5;
    color: #333;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid #ccc;
}

.bulunamadi-mesaj {
    color: #dc3545;
    font-size: 13px;
    font-weight: bold;
}

/* Zıplama Animasyonu */
@keyframes popIn {
    0% { transform: scale(0.8); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}