


/* General styles */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header styles */
.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Main content area */
main {
    flex: 1;
    padding: 20px 0;
}

/* Login page specific */
.login-page main {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh; /* Adjust as needed */
}

/* Footer styles */
footer {
    background-color: #343a40;
    color: white;
    padding: 20px 0;
    margin-top: auto;
}

/* Responsive tables */
.table-responsive {
    overflow-x: auto;
}

/* Cards */
.card {
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Print styles */
@media print {
    .no-print {
        display: none;
    }
    
    body {
        font-size: 12pt;
    }
    
    .card {
        border: none;
        box-shadow: none;
    }
}