/* ================================================================
   CUSTOM OVERRIDES: Layout & Typography Consistency
   ================================================================ 
*/

/* 1. FORCE UNIFORM CONTAINER WIDTH */
/* Ensures that all page sections align to the same maximum width */
.row.sectionBlockLayout {
    max-width: 1240px !important; /* Standard "Web" width */
    margin-left: auto !important;
    margin-right: auto !important;
    width: 100% !important;
    display: flex !important;
}

/* Removes padding issues that cause tables to look "too small" */
.container, .container-fluid {
    width: 100% !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
}

/* 2. GLOBAL TYPOGRAPHY CONSISTENCY */
/* Fixes the base font size for the entire site */
html, body {
    font-size: 16px !important; 
    font-family: 'Segoe UI', Arial, sans-serif !important;
    line-height: 1.6 !important;
    color: #333333 !important;
}

/* Force consistency on Headings across all pages */
h1 { font-size: 2.25rem !important; margin-bottom: 1rem !important; font-weight: 700 !important; }
h2 { font-size: 1.85rem !important; margin-bottom: 0.75rem !important; }
h3 { font-size: 1.5rem !important; }

/* 3. TABLE SPECIFIC FIXES */
/* Ensures your bin location table always stretches to fill the container */
.table-responsive {
    width: 100% !important;
    border: none !important;
}

table.table {
    width: 100% !important;
    margin-bottom: 1rem !important;
    background-color: transparent !important;
}

/* 4. MODAL APPEARANCE */
/* Prevents modals from looking cramped on different pages */
.modal-content {
    border-radius: 8px !important;
    box-shadow: 0 5px 15px rgba(0,0,0,.5) !important;
}

.modal-header, .modal-footer {
    background-color: #f8f9fa !important;
}