/* KPSS Puan Hesaplama - Custom CSS */

#kpss-hesaplama-container {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Input animasyonları */
#kpss-hesaplama-container input[type="number"]:focus {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

/* Button hover efektleri */
#kpss-hesaplama-container button:hover {
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

/* Sonuç animasyonu */
#kpss-sonuclar {
    animation: fadeInUp 0.5s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    #kpss-hesaplama-container {
        padding: 1rem;
    }
    
    #kpss-hesaplama-container .text-4xl {
        font-size: 2rem;
    }
    
    #kpss-hesaplama-container .p-8 {
        padding: 1.5rem;
    }
}

/* Print stilleri */
@media print {
    #kpss-hesaplama-container {
        background: white !important;
    }
    
    #kpss-hesaplama-container button {
        display: none;
    }
}