/* General reset to eliminate padding/margin issues */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 14px;
}

/* Main Content Header Adjustments */
.main-content .header {
    background-color: #e9ecef;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
    color: #343a40;
    font-size: 18px;
}

/* Sidebar Adjustments */
.sidebar {
    background-color: #f8f9fa;
    padding: 10px;
    border-right: 1px solid #e2e6ea;
    min-height: 100vh;
}

/* Container Adjustments */
.container-fluid {
    padding-left: 0;
    padding-right: 0;
}

/* Remove default padding/margin that might be applied by Bootstrap or the browser */
.row.no-gutters {
    margin-left: 0;
    margin-right: 0;
}

/* Dashboard section headers */
.dashboard-section-header {
    font-size: 22px;  /* Larger font size for section headers */
    font-weight: bold; /* Bold font for emphasis */
    color: #343a40; /* Consistent color for text */
    margin-bottom: 15px; /* Space below the header */
}

/* Dashboard subsection headers */
.dashboard-subsection-header {
    font-size: 18px;
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #495057;
}

/* Dashboard tables for clarity and consistency */
.dashboard-table {
    width: 100%;
    border-collapse: collapse;
}

.dashboard-table th {
    background-color: #f1f3f5;
    border: 1px solid #dee2e6;
    padding: 8px;
    text-align: left;
}

.dashboard-table td {
    border: 1px solid #dee2e6;
    padding: 8px;
}

/* Buttons for a consistent and attractive look */
.button-primary {
    background-color: #007bff;
    color: white;
    padding: 8px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.button-primary:hover {
    background-color: #0056b3;
}

.button-secondary {
    background-color: #6c757d;
    color: white;
    padding: 8px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.button-secondary:hover {
    background-color: #5a6268;
}

