/* Additional styles if needed */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

/* Print styles */
@media print {
    .no-print {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
    }
    
    .container {
        max-width: none;
        margin: 0;
        padding: 0;
    }
}

/* Responsive table */
@media (max-width: 768px) {
    .subjects-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}