/* Custom styles */
body {
    font-family: 'K2D','Sarabun', sans-serif;
}

/* Animation for cards */
.card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive table */
.responsive-table {
    width: 100%;
    overflow-x: auto;
}

/* Print styles */
@media print {
    .no-print {
        display: none;
    }
    
    body {
        background: none;
        font-size: 12pt;
    }
    
    .print-full-width {
        width: 100%;
    }
}