/* ═══════════════════════════════════════
   Mess Management System — Global Styles
   Red / White / Yellow Theme — Sidebar Layout
   ═══════════════════════════════════════ */

:root {
    --red: #c0392b;
    --red-dark: #a93226;
    --red-light: #fadbd8;
    --yellow: #f39c12;
    --yellow-light: #fef9e7;
    --white: #ffffff;
    --gray-light: #f8f9fa;
    --gray: #dee2e6;
    --gray-dark: #6c757d;
    --text: #212529;
    --green: #27ae60;
    --green-light: #d5f5e3;
    --radius: 10px;
    --radius-sm: 6px;
    --shadow: 0 1px 4px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --transition: 0.2s ease;
    --sidebar-width: 240px;
}

/* ── Reset ─────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--gray-light);
    color: var(--text);
    line-height: 1.6;
    font-size: 15px;
    min-height: 100vh;
}

a {
    color: var(--red);
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

/* ═══════════════════════════════════════
   SIDEBAR LAYOUT
   ═══════════════════════════════════════ */

.app-layout {
    display: flex;
    min-height: 100vh;
}

/* ── Sidebar ───────────────────────── */
.sidebar {
    width: var(--sidebar-width);
    background: var(--red);
    color: var(--white);
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 200;
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.sidebar .sidebar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 20px;
    font-weight: 700;
    font-size: 17px;
    color: var(--white);
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    flex-shrink: 0;
}

.sidebar .sidebar-brand svg {
    width: 26px;
    height: 26px;
    fill: var(--white);
    flex-shrink: 0;
}

.sidebar .sidebar-brand:hover {
    text-decoration: none;
}

.sidebar .sidebar-user {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    flex-shrink: 0;
}

.sidebar .sidebar-user .user-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
}

.sidebar .sidebar-user .user-role {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255,255,255,0.6);
    margin-top: 2px;
}

.sidebar-nav {
    flex: 1;
    padding: 12px 0;
    list-style: none;
}

.sidebar-nav .nav-label {
    padding: 8px 20px 4px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.4);
    font-weight: 600;
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background var(--transition), color var(--transition);
    border-left: 3px solid transparent;
}

.sidebar-nav a:hover {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    text-decoration: none;
}

.sidebar-nav a.active {
    background: rgba(255,255,255,0.15);
    color: var(--white);
    border-left-color: var(--yellow);
    font-weight: 600;
}

.sidebar-nav a svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    flex-shrink: 0;
}

.sidebar-footer {
    padding: 12px 16px;
    border-top: 1px solid rgba(255,255,255,0.12);
    flex-shrink: 0;
}

.sidebar-footer a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255,255,255,0.2);
    transition: background var(--transition);
}

.sidebar-footer a:hover {
    background: rgba(255,255,255,0.15);
    color: var(--white);
    text-decoration: none;
}

.sidebar-footer a svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    flex-shrink: 0;
}

/* ── Main Content ──────────────────── */
.main-content {
    flex: 1;
    margin-left: var(--sidebar-width);
    min-width: 0;
}

/* ── Mobile Hamburger ──────────────── */
.sidebar-toggle {
    display: none;
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 300;
    background: var(--red);
    color: var(--white);
    border: none;
    border-radius: 8px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.sidebar-toggle svg {
    width: 22px;
    height: 22px;
    fill: var(--white);
}

.sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 150;
}

/* ── Mobile Responsive ─────────────── */
@media (max-width: 768px) {
    .sidebar {
        transform: translateX(-100%);
    }

    .sidebar.open {
        transform: translateX(0);
    }

    .sidebar-overlay.open {
        display: block;
    }

    .sidebar-toggle {
        display: flex;
    }

    .main-content {
        margin-left: 0;
    }

    .page-header {
        padding-left: 60px;
    }
}

/* ── Layout ────────────────────────── */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

@media (max-width: 992px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .grid-3 {
        grid-template-columns: 1fr;
    }
    .grid-2 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .grid-4 {
        grid-template-columns: 1fr;
    }
}

/* ── Page Header ───────────────────── */
.page-header {
    background: var(--white);
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray);
    margin-bottom: 1.5rem;
}

.page-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

.page-header h1 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
    border-left: 4px solid var(--red);
    padding-left: 12px;
}

/* ── Cards ──────────────────────────── */
.card {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--gray);
    padding: 1.25rem;
    box-shadow: var(--shadow);
    transition: box-shadow var(--transition), transform var(--transition);
}

.card:hover {
    box-shadow: var(--shadow-md);
}

.card h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 8px;
}

.card h3 svg {
    width: 18px;
    height: 18px;
    fill: var(--red);
    flex-shrink: 0;
}

/* Stat cards */
.stat-card {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--gray);
    padding: 1.25rem;
    box-shadow: var(--shadow);
    text-align: center;
    transition: box-shadow var(--transition), transform var(--transition);
}

.stat-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.stat-card .stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
}

.stat-card .stat-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--white);
}

.stat-card .stat-icon.red { background: var(--red); }
.stat-card .stat-icon.yellow { background: var(--yellow); }
.stat-card .stat-icon.green { background: var(--green); }
.stat-card .stat-icon.gray { background: var(--gray-dark); }

.stat-card .stat-number {
    font-size: 28px;
    font-weight: 600;
    color: var(--red);
    line-height: 1.2;
}

.stat-card .stat-number.green,
.stat-card .stat-number.text-green {
    color: var(--green);
}

.stat-card .stat-number.text-red {
    color: var(--red);
}

.stat-card .stat-number.text-yellow {
    color: var(--yellow);
}

.stat-card .stat-label {
    font-size: 13px;
    color: var(--gray-dark);
    margin-top: 4px;
}

/* ── Buttons ────────────────────────── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: var(--red);
    color: var(--white);
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
    text-decoration: none;
}

.btn-primary:hover {
    background: var(--red-dark);
    transform: translateY(-1px);
    text-decoration: none;
    color: var(--white);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-warning {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: var(--yellow);
    color: var(--white);
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--transition);
    text-decoration: none;
}

.btn-warning:hover {
    background: #e67e22;
    text-decoration: none;
    color: var(--white);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: transparent;
    color: var(--red);
    border: 1px solid var(--red);
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--transition), color var(--transition);
    text-decoration: none;
}

.btn-outline:hover {
    background: var(--red);
    color: var(--white);
    text-decoration: none;
}

.btn-sm {
    padding: 6px 14px;
    font-size: 13px;
    border-radius: 6px;
}

.btn-green {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: var(--green);
    color: var(--white);
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--transition);
    text-decoration: none;
}

.btn-green:hover {
    background: #219a52;
    text-decoration: none;
    color: var(--white);
}

button:disabled, .btn-primary:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    transform: none;
}

/* ── Tables ──────────────────────────── */
.table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius);
    border: 1px solid var(--gray);
    background: var(--white);
    box-shadow: var(--shadow);
    -webkit-overflow-scrolling: touch;
}

table {
    width: 100%;
    border-collapse: collapse;
}

table thead th {
    background: var(--red);
    color: var(--white);
    padding: 10px 14px;
    text-align: left;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

table tbody td {
    padding: 10px 14px;
    font-size: 14px;
    border-bottom: 1px solid #f0f0f0;
}

table tbody tr:nth-child(even) {
    background: #fafafa;
}

table tbody tr:hover {
    background: var(--red-light);
}

table tfoot td {
    padding: 10px 14px;
    font-weight: 600;
    font-size: 14px;
    background: var(--gray-light);
    border-top: 2px solid var(--gray);
}

/* special row highlights */
table tbody tr.row-red {
    background: #fce4e4;
}
table tbody tr.row-yellow {
    background: var(--yellow-light);
}

/* ── Forms ───────────────────────────── */
.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 4px;
    color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid var(--gray);
    border-radius: var(--radius-sm);
    padding: 9px 12px;
    font-size: 14px;
    font-family: inherit;
    color: var(--text);
    background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(192,57,43,0.1);
}

.form-group input:disabled,
.form-group select:disabled {
    background: #f0f0f0;
    cursor: not-allowed;
    opacity: 0.7;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-inline {
    display: flex;
    gap: 0.75rem;
    align-items: flex-end;
    flex-wrap: wrap;
}

.form-inline .form-group {
    flex: 1;
    min-width: 140px;
}

@media (max-width: 600px) {
    .form-inline {
        flex-direction: column;
        align-items: stretch;
    }
    .form-inline .form-group {
        min-width: 100%;
    }
}

/* Radio / Checkbox custom */
.radio-group, .checkbox-group {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-top: 4px;
}

.radio-group label, .checkbox-group label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
}

.radio-group input[type="radio"],
.checkbox-group input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--red);
}

/* ── Badges ──────────────────────────── */
.badge {
    display: inline-block;
    border-radius: 20px;
    font-size: 12px;
    padding: 3px 10px;
    font-weight: 600;
    white-space: nowrap;
}

.badge-red {
    background: var(--red-light);
    color: #a93226;
}

.badge-yellow {
    background: var(--yellow-light);
    color: #9a7d0a;
}

.badge-green {
    background: var(--green-light);
    color: #1e8449;
}

.badge-gray {
    background: #f0f0f0;
    color: #555;
}

/* ── Flash Messages ──────────────────── */
.flash {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: slideDown 0.3s ease;
}

.flash-success {
    background: var(--green-light);
    color: #1e8449;
    border: 1px solid #a9dfbf;
}

.flash-error {
    background: var(--red-light);
    color: #a93226;
    border: 1px solid #f5b7b1;
}

.flash-warning {
    background: var(--yellow-light);
    color: #9a7d0a;
    border: 1px solid #f9e79f;
}

@keyframes slideDown {
    from { transform: translateY(-10px); opacity: 0; }
    to   { transform: translateY(0); opacity: 1; }
}

/* ── Section Spacing ─────────────────── */
.section {
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-title svg {
    width: 18px;
    height: 18px;
    fill: var(--red);
}

/* ── Quick Links ─────────────────────── */
.quick-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 1rem;
    background: var(--white);
    border: 1px solid var(--gray);
    border-radius: var(--radius);
    color: var(--text);
    text-decoration: none;
    transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}

.quick-link:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    border-color: var(--red);
    text-decoration: none;
}

.quick-link .ql-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--red-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.quick-link .ql-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--red);
}

.quick-link .ql-text h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
}

.quick-link .ql-text p {
    font-size: 12px;
    color: var(--gray-dark);
}

/* ── Countdown / Time Badge ──────────── */
.time-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--yellow-light);
    color: #9a7d0a;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid #f9e79f;
}

.time-badge.closed {
    background: var(--red-light);
    color: #a93226;
    border-color: #f5b7b1;
}

/* ── Inline forms (manage users) ────── */
.inline-form { display: none; background: #fafafa; padding: 12px; border-radius: 8px; margin-top: 8px; }
.inline-form.show { display: block; }

/* ── Password change section ──────── */
.pw-change-card {
    border-left: 4px solid var(--yellow);
}

/* ── Utilities ───────────────────────── */
.text-center { text-align: center; }
.text-right  { text-align: right; }
.text-red    { color: var(--red) !important; }
.text-green  { color: var(--green) !important; }
.text-gray   { color: var(--gray-dark) !important; }
.text-yellow { color: var(--yellow) !important; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.fw-600 { font-weight: 600; }

/* ═══════════════════════════════════════
   MOBILE RESPONSIVE — Compact UI
   Everything scales down for small screens
   ═══════════════════════════════════════ */

/* ── Tablets & small laptops ──────── */
@media (max-width: 992px) {
    body {
        font-size: 14px;
    }

    .container {
        padding: 0 0.75rem;
    }

    .page-header h1 {
        font-size: 18px;
    }

    .stat-card .stat-number {
        font-size: 24px;
    }

    .stat-card .stat-label {
        font-size: 12px;
    }

    .card {
        padding: 1rem;
    }

    .stat-card {
        padding: 1rem;
    }
}

/* ── Mobile phones ────────────────── */
@media (max-width: 768px) {
    body {
        font-size: 13px;
        line-height: 1.5;
    }

    .container {
        padding: 0 0.6rem;
    }

    /* Page header compact */
    .page-header {
        padding: 0.6rem 0;
        margin-bottom: 0.75rem;
    }

    .page-header h1 {
        font-size: 16px;
        padding-left: 8px;
        border-left-width: 3px;
    }

    .page-header .badge {
        font-size: 10px;
        padding: 2px 8px;
    }

    /* Section spacing */
    .section {
        margin-bottom: 0.75rem;
    }

    .section-title {
        font-size: 14px;
        margin-bottom: 0.5rem;
    }

    .section-title svg {
        width: 15px;
        height: 15px;
    }

    /* Cards compact */
    .card {
        padding: 0.75rem;
        border-radius: 8px;
    }

    .card h3 {
        font-size: 13px;
        margin-bottom: 0.5rem;
    }

    .card h3 svg {
        width: 15px;
        height: 15px;
    }

    /* Stat cards compact */
    .stat-card {
        padding: 0.65rem 0.5rem;
        border-radius: 8px;
    }

    .stat-card .stat-icon {
        width: 32px;
        height: 32px;
        border-radius: 8px;
        margin-bottom: 0.4rem;
    }

    .stat-card .stat-icon svg {
        width: 16px;
        height: 16px;
    }

    .stat-card .stat-number {
        font-size: 20px;
    }

    .stat-card .stat-label {
        font-size: 10px;
        margin-top: 2px;
    }

    /* Buttons compact */
    .btn-primary, .btn-warning, .btn-outline, .btn-green {
        padding: 7px 14px;
        font-size: 12px;
        border-radius: 6px;
    }

    .btn-sm {
        padding: 4px 10px;
        font-size: 11px;
    }

    /* Tables compact */
    table thead th {
        padding: 6px 8px;
        font-size: 11px;
    }

    table tbody td {
        padding: 6px 8px;
        font-size: 12px;
    }

    table tfoot td {
        padding: 6px 8px;
        font-size: 12px;
    }

    /* Forms compact */
    .form-group {
        margin-bottom: 0.6rem;
    }

    .form-group label {
        font-size: 11px;
        margin-bottom: 2px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 7px 10px;
        font-size: 13px;
        border-radius: 5px;
    }

    .form-inline {
        gap: 0.5rem;
    }

    /* Badges compact */
    .badge {
        font-size: 10px;
        padding: 2px 7px;
        border-radius: 12px;
    }

    /* Flash compact */
    .flash {
        padding: 8px 12px;
        font-size: 12px;
        margin-bottom: 0.6rem;
    }

    /* Time badge compact */
    .time-badge {
        padding: 4px 10px;
        font-size: 11px;
        border-radius: 6px;
    }

    /* Quick links compact */
    .quick-link {
        padding: 0.65rem;
        gap: 8px;
    }

    .quick-link .ql-icon {
        width: 32px;
        height: 32px;
        border-radius: 8px;
    }

    .quick-link .ql-icon svg {
        width: 16px;
        height: 16px;
    }

    .quick-link .ql-text h4 {
        font-size: 12px;
    }

    .quick-link .ql-text p {
        font-size: 10px;
    }

    /* Radio and checkbox groups */
    .radio-group, .checkbox-group {
        gap: 0.6rem;
    }

    .radio-group label, .checkbox-group label {
        font-size: 12px;
    }

    /* Inline form compact */
    .inline-form {
        padding: 8px;
    }
}

/* ── Very small phones ────────────── */
@media (max-width: 480px) {
    body {
        font-size: 12px;
    }

    .page-header {
        padding: 0.5rem 0;
        margin-bottom: 0.5rem;
    }

    .page-header h1 {
        font-size: 14px;
    }

    .stat-card .stat-number {
        font-size: 18px;
    }

    .stat-card .stat-label {
        font-size: 9px;
    }

    .stat-card .stat-icon {
        width: 28px;
        height: 28px;
        margin-bottom: 0.3rem;
    }

    .stat-card .stat-icon svg {
        width: 14px;
        height: 14px;
    }

    .stat-card {
        padding: 0.5rem 0.4rem;
    }

    .card {
        padding: 0.6rem;
    }

    .card h3 {
        font-size: 12px;
    }

    .section-title {
        font-size: 13px;
    }

    .btn-primary, .btn-warning, .btn-outline, .btn-green {
        padding: 6px 12px;
        font-size: 11px;
    }

    table thead th {
        padding: 5px 6px;
        font-size: 10px;
    }

    table tbody td {
        padding: 5px 6px;
        font-size: 11px;
    }

    .form-group input,
    .form-group select {
        padding: 6px 8px;
        font-size: 12px;
    }

    .form-group label {
        font-size: 10px;
    }

    .flash {
        padding: 6px 10px;
        font-size: 11px;
    }

    .badge {
        font-size: 9px;
        padding: 2px 6px;
    }

    .time-badge {
        font-size: 10px;
        padding: 3px 8px;
    }

    .quick-link .ql-text h4 {
        font-size: 11px;
    }

    .quick-link .ql-text p {
        font-size: 9px;
    }
}

/* ── Print styles ────────────────────── */
@media print {
    .sidebar, .sidebar-toggle, .sidebar-overlay, .page-header,
    .btn-primary, .btn-warning, .btn-outline {
        display: none !important;
    }
    .main-content {
        margin-left: 0 !important;
    }
}
