/* styles/dashboard.css */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    background-color: #f8f9fa;
    display: flex;
    flex-direction: column;
}

/* Make the wrapper full height and use flexbox */
.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Make the main content area grow to push footer down */
main {
    flex: 1;
}

.report-card {
    transition: transform 0.2s;
}

.report-card:hover {
    transform: translateY(-2px);
}

.chart-container {
    position: relative;
    height: 300px;
}

.stats-card {
    border-left: 4px solid #0d6efd;
}

/* Login screen specific styles */
.login-overlay {
    background-color: rgba(248, 249, 250, 0.98);
    z-index: 1050;
}

/* Table styling - extra horizontal padding */
.table th,
.table td {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}