html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: #f9f9fb;
    color: #333;
}

ul,
ol {
    list-style-type: none;
    padding-left: 0;
    margin-left: 0;
}

input,
.btn {
    border-radius: 0 !important;
}

/* Table Styles */
.report-table {
    border-radius: 6px;
    overflow: hidden;
    font-size: 0.95rem;
}

    .report-table thead {
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .report-table tbody tr:hover {
        background-color: #f1f5f9;
    }

    .report-table td,
    .report-table th {
        padding: 12px;
        vertical-align: middle;
    }

h2 {
    margin-bottom: 24px;
}

h4 {
    margin-top: 32px;
    margin-bottom: 12px;
    font-weight: 600;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    padding: 0.375rem 0.75rem;
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
    background-color: #f8f9fa;
    margin: 0;
    cursor: pointer;
    font-size: 0.875rem;
    color: #212529;
    text-decoration: none;
}

    .dataTables_wrapper .dataTables_paginate .paginate_button:hover {
        background-color: #e2e6ea;
    }

.dataTables_filter label {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

/* Tracker Styling */
.meal-container {
    width: 100%;
    padding: 2rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tracker-box {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

    .tracker-box form {
        width: 100%;
    }

.tracker-input {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    border: 2px solid #ccc;
    border-radius: 6px;
    outline: none;
    box-sizing: border-box;
}

    .tracker-input:focus {
        border-color: #4285f4;
    }

.tracker-button {
    padding: 1rem;
    width: 100%;
    font-size: 1.1rem;
    font-weight: bold;
    background-color: #4285f4;
    color: white;
    border: none;
    border-radius: 6px;
    margin-top: 1rem;
    transition: background 0.3s ease;
}

    .tracker-button:hover {
        background-color: #3367d6;
    }

/* Alert Styling */
.tracker-alert {
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 6px;
    margin-bottom: 1rem;
    box-sizing: border-box;
    text-align: left;
}

.tracker-success {
    background-color: #d1e7dd;
    color: #0f5132;
    border-left: 6px solid #198754;
}

.tracker-info {
    background-color: #cff4fc;
    color: #055160;
    border-left: 6px solid #0dcaf0;
}

.tracker-error {
    background-color: #f8d7da;
    color: #842029;
    border-left: 6px solid #dc3545;
}

.validation-summary-errors {
    margin-bottom: 30px;
}

.alert {
    margin-bottom: 16px;
}

/* Make the logo larger */
.navbar-brand img {
    height: 48px;
}

/* Increase navbar height with padding */
.navbar {
    padding-top: 12px;
    padding-bottom: 12px;
    min-height: 64px;
    border-bottom: 1px solid #ddd; /* Optional visual separation */
}

/* Optional: Adjust font size in nav links for balance */
.navbar-nav > li > a {
    font-size: 16px;
    padding-top: 12px;
    padding-bottom: 12px;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: auto;
}

body {
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

/* Remove margin from last element inside body if present */
body > *:last-child {
    margin-bottom: 0 !important;
}

.alert-info {
    background-color: #d1ecf1;
    color: #0c5460;
    border-color: #bee5eb;
}

.export-btn-pdf i,
.export-btn-excel i {
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

.btn-fixed-width {
    min-width: 150px; /* or 8rem, 10ch, etc. */
}

.btn-fixed-width2 {
    min-width: 80px;
    text-align: center;
}
.export-buttons {
    flex-grow: 1;
    text-align: right;
}

.export-buttons .buttons-excel {
    margin-left: 1rem;
}

.search-box {
    margin-right: 1rem;
}



thead.table-dark th {
    background-color: #003e5c !important; /* or your chosen hex */
    color: #fff !important;
}

#adjustmentsPanel {
    width: 520px !important;
}

#adjustmentsPanelLabel {
    margin-top: 1rem;
}

