/* filepath: assets/css/style.css */
@import url('https://fonts.googleapis.com/css2?family=Sarabun:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Sarabun', sans-serif;
    background-color: #f8fafc;
    -webkit-font-smoothing: antialiased;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 0.4s ease-out forwards;
}

.candidate-card {
    transition: transform 0.2s, box-shadow 0.2s;
}

.candidate-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Print Styles (เมื่อกด Ctrl+P) */
@media print {
    nav, aside, button, .no-print {
        display: none !important;
    }
    body {
        background-color: white;
    }
    main {
        padding: 0;
        margin: 0;
        max-width: 100%;
    }
    .shadow-sm, .shadow-lg {
        box-shadow: none !important;
        border: 1px solid #ddd;
    }
}