/* ==========================================================
   DUBAIBAAZAR — MARKET PAGE
   Clean Premium UI
   ========================================================== */


/* ==========================================================
   ROOT
   ========================================================== */

:root {
    --navy: #172a46;
    --navy-dark: #102039;
    --navy-soft: #223b5e;

    --gold: #667184;
    --gold-soft: #667184;

    --page-bg: #f7f8fa;
    --white: #ffffff;

    --text: #202b3d;
    --muted: #6c7788;
    --light-text: #8a94a3;

    --border: #e4e8ee;
    --border-dark: rgba(255, 255, 255, 0.12);

    --row-hover: #f8f9fb;

    --shadow: 0 6px 22px rgba(20, 35, 58, 0.06);
    --shadow-hero: 0 14px 35px rgba(16, 32, 57, 0.14);
}


/* ==========================================================
   RESET
   ========================================================== */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    width: 100%;
    margin: 0;
    padding: 0;

    background: var(--page-bg);
    color: var(--text);

    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}


/* ==========================================================
   MARKET PAGE
   ========================================================== */

.market-page {
    width: 100%;
    max-width: none;

    margin: 0;
    padding: 0 0 70px;
}


/* ==========================================================
   PAGE HEADER
   ========================================================== */

.page-header {
    width: 100%;

    padding: 48px 24px 38px;

    text-align: center;
}

.page-eyebrow,
.section-eyebrow {
    display: block;

    margin: 0 0 8px;

    color: var(--gold);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 2.8px;
    line-height: 1.4;

    text-transform: uppercase;
}

.page-header h1 {
    max-width: 900px;

    margin: 0 auto;

    color: var(--navy);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 42px;
    font-weight: 700;

    line-height: 1.2;
}

.page-header h1::after {
    content: "";

    display: block;

    width: 42px;
    height: 2px;

    margin: 16px auto 0;

    background: var(--gold);
}

.page-header p {
    max-width: 650px;

    margin: 14px auto 0;

    color: var(--muted);

    font-size: 14px;
    line-height: 1.7;
}


/* ==========================================================
   GENERAL SECTIONS
   ========================================================== */

.result-section,
.content-section {
    width: 100%;

    margin: 0 0 42px;
}


/* ==========================================================
   SECTION HEADINGS
   ========================================================== */

.section-heading {
    width: 100%;

    margin: 0 0 18px;

    padding: 0 28px;
}

.section-heading h2 {
    margin: 0;

    color: var(--navy);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 27px;
    font-weight: 700;

    line-height: 1.3;
}

.section-heading p {
    margin: 6px 0 0;

    color: var(--muted);

    font-size: 13px;
}



/* ==========================================================
   TODAY RESULT — CLEAN HIGHLIGHTED TEXT
   ========================================================== */

.today-result-section {
    width: calc(100% - 56px);
    max-width: none;
    margin: 0 auto 42px;
    padding: 0;
    background: var(--page-bg);
    border: 1px solid #e1e5eb;
    border-radius: 12px;
    box-shadow: 0 8px 28px rgba(20, 35, 58, 0.07);
    overflow: hidden;
    text-align: center;
}

/* Date + title */

.today-result-top {
    width: 100%;
    padding: 25px 20px 18px;
    text-align: center;
}

.today-result-date {
    margin: 0;
    color: #d62828;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.3;
}

.today-result-title {
    margin-top: 5px;
    color: #172a46;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.4;
}

.today-result-title span {
    color: #68758a;
    font-weight: 600;
}

/* Markets */

.today-result-markets {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
    padding: 2px 20px 30px;
}

/* Individual market */

.today-result-market {
    width: 100%;
    padding: 15px 10px 22px;
    text-align: center;
    border: 0;
}

/* NO SEPARATOR */

.today-result-market + .today-result-market {
    border-top: 0;
    padding-top: 15px;
}

/* ==========================================================
   MARKET NAME
   Green / Blue highlighted text
   ========================================================== */

.today-market-name {
    margin: 0;

    color: #087f5b;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 30px;
    font-weight: 900;

    line-height: 1.15;
    letter-spacing: .5px;

    text-transform: uppercase;
}

/* Alternate blue tone for visual richness */

.today-result-market:nth-child(2) .today-market-name {
    color: #1769aa;
}

.today-result-market:nth-child(3) .today-market-name {
    color: #087f5b;
}

/* Market time */

.today-market-time {
    margin-top: 4px;

    color: #8a94a3;

    font-size: 13px;
    font-weight: 600;
    line-height: 1.25;
}

/* ==========================================================
   RESULT
   RED HIGHLIGHT
   ========================================================== */

.today-market-number {
    margin-top: 5px;

    color: #d62828;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 50px;
    font-weight: 700;

    line-height: 1;
    letter-spacing: 1px;
}

/* WAIT / -- */

.today-market-number.is-waiting {
    color: #8a94a3;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 29px;
    font-weight: 800;

    letter-spacing: 1.5px;
}


/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 900px) {

    .today-result-section {
        width: calc(100% - 40px);
    }

    .today-result-date {
        font-size: 19px;
    }

    .today-result-title {
        font-size: 16px;
    }

    .today-market-name {
        font-size: 28px;
    }

    .today-market-number {
        font-size: 46px;
    }
}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 768px) {

    .today-result-section {
        width: calc(100% - 28px);
        margin-bottom: 34px;
        border-radius: 10px;
    }

    .today-result-top {
        padding: 20px 14px 15px;
    }

    .today-result-date {
        font-size: 17px;
    }

    .today-result-title {
        font-size: 15px;
    }

    .today-result-markets {
        padding: 0 14px 22px;
    }

    .today-result-market {
        padding: 13px 6px 20px;
    }

    .today-result-market + .today-result-market {
        padding-top: 13px;
    }

    .today-market-name {
        font-size: 24px;
    }

    .today-market-time {
        font-size: 12px;
    }

    .today-market-number {
        font-size: 40px;
    }

    .today-market-number.is-waiting {
        font-size: 26px;
    }
}


/* ==========================================================
   SMALL MOBILE
   ========================================================== */

@media (max-width: 480px) {

    .today-result-section {
        width: calc(100% - 20px);
        border-radius: 9px;
    }

    .today-result-top {
        padding: 18px 10px 13px;
    }

    .today-result-date {
        font-size: 16px;
    }

    .today-result-title {
        font-size: 14px;
    }

    .today-result-markets {
        padding-left: 8px;
        padding-right: 8px;
        padding-bottom: 18px;
    }

    .today-result-market {
        padding: 11px 4px 18px;
    }

    .today-market-name {
        font-size: 21px;
    }

    .today-market-number {
        font-size: 36px;
    }

    .today-market-number.is-waiting {
        font-size: 24px;
    }
}

/* ==========================================================
   RESULT TABLE
   ========================================================== */

.result-table {
    width: calc(100% - 56px);

    margin: 0 28px;

    overflow-x: auto;

    background: var(--white);

    border: 1px solid var(--border);
    border-radius: 8px;

    box-shadow: var(--shadow);
}

.result-table table {
    width: 100%;

    min-width: 460px;

    border-collapse: collapse;
}


/* ==========================================================
   RESULT TABLE HEADER
   ========================================================== */

.result-table th {
    padding: 13px 17px;

    background: #eef1f5;

    border-bottom: 1px solid var(--border);

    color: var(--navy);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.4px;

    text-align: left;

    text-transform: uppercase;
}


/* ==========================================================
   RESULT TABLE BODY
   ========================================================== */

.result-table td {
    padding: 13px 17px;

    border-bottom: 1px solid #edf0f3;

    color: #5c6879;

    font-size: 13px;
}

.result-table tbody tr:last-child td {
    border-bottom: 0;
}

.result-table tbody tr:nth-child(even) {
    background: #fcfcfd;
}

.result-table tbody tr:hover {
    background: var(--row-hover);
}

.result-table .result-value {
    color: var(--navy);

    font-weight: 700;

    text-align: left;
}


/* ==========================================================
   FILTER
   ========================================================== */

.chart-filter {
    width: calc(100% - 56px);

    margin: 0 28px 20px;
    padding: 16px;

    display: flex;

    align-items: flex-end;
    flex-wrap: wrap;

    gap: 12px;

    background: #ffffff;

    border: 1px solid var(--border);
    border-radius: 8px;

    box-shadow: var(--shadow);
}

.filter-item {
    display: flex;

    flex-direction: column;

    gap: 5px;
}

.filter-item label {
    color: var(--muted);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.2px;
}

.filter-item select {
    width: 150px;
    height: 38px;

    padding: 0 10px;

    background: #ffffff;

    border: 1px solid #d5dbe3;
    border-radius: 6px;

    color: var(--text);

    font-size: 13px;

    cursor: pointer;
}

.filter-item select:focus {
    outline: none;

    border-color: var(--gold);

    box-shadow: 0 0 0 3px rgba(184, 149, 77, 0.10);
}


/* ==========================================================
   FILTER BUTTON
   ========================================================== */

.chart-button {
    height: 38px;

    padding: 0 18px;

    background: var(--navy);

    border: 0;
    border-radius: 6px;

    color: #ffffff;

    font-size: 12px;
    font-weight: 700;

    cursor: pointer;

    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

.chart-button:hover {
    background: var(--navy-soft);

    transform: translateY(-1px);
}


/* ==========================================================
   TABLE HEADING
   ========================================================== */

.table-heading {
    margin: 24px 28px 13px;

    color: var(--navy);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 20px;
    font-weight: 700;

    line-height: 1.3;
}


/* ==========================================================
   YEARLY CHART
   ========================================================== */

.yearly-chart {
    width: calc(100% - 56px);

    margin: 0 28px;

    overflow-x: auto;

    background: var(--white);

    border: 1px solid var(--border);
    border-radius: 8px;

    box-shadow: var(--shadow);
}

.yearly-chart table {
    width: 100%;

    min-width: 850px;

    border-collapse: collapse;
}


/* ==========================================================
   YEARLY HEADER
   ========================================================== */

.yearly-chart th {
    padding: 11px 9px;

    background: #eef1f5;

    border-right: 1px solid #dde2e9;
    border-bottom: 1px solid #dce1e7;

    color: var(--navy);

    font-size: 11px;
    font-weight: 700;

    text-align: center;
}

.yearly-chart th:last-child {
    border-right: 0;
}


/* ==========================================================
   YEARLY CELLS
   ========================================================== */

.yearly-chart td {
    min-width: 55px;

    padding: 9px 8px;

    background: #ffffff;

    border-right: 1px solid #e7eaee;
    border-bottom: 1px solid #e7eaee;

    color: #596678;

    font-size: 12px;

    text-align: center;
}

.yearly-chart td:last-child {
    border-right: 0;
}

.yearly-chart tbody tr:nth-child(even) td {
    background: #fcfcfd;
}

.yearly-chart tbody tr:hover td {
    background: #f7f9fb;
}


/* ==========================================================
   YEARLY DATE COLUMN
   ========================================================== */

.yearly-chart th:first-child,
.yearly-chart td:first-child {
    position: sticky;
    left: 0;
}

.yearly-chart th:first-child {
    z-index: 5;
}

.yearly-chart td:first-child {
    z-index: 3;

    background: #eef1f5;

    color: var(--navy);

    font-weight: 700;

    box-shadow: 2px 0 5px rgba(20, 35, 58, 0.05);
}


/* ==========================================================
   SEO CONTENT
   ========================================================== */

.seo-content {
    width: calc(100% - 56px);

    margin: 0 28px;
    padding: 30px;

    background: #ffffff;

    border: 1px solid var(--border);
    border-radius: 8px;

    box-shadow: var(--shadow);

    color: #626e7f;

    font-size: 14px;

    line-height: 1.8;
}

.seo-content .section-heading {
    margin-left: -30px;
    margin-right: -30px;
    padding-left: 30px;
    padding-right: 30px;
}

.seo-content p {
    margin: 0 0 13px;
}

.seo-content p:last-child {
    margin-bottom: 0;
}


/* ==========================================================
   NO RESULT
   ========================================================== */

.no-result {
    padding: 20px;

    background: #fafbfd;

    border: 1px dashed #d5dbe3;
    border-radius: 6px;

    color: var(--muted);

    text-align: center;
}


/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 900px) {

    .page-header {
        padding-top: 42px;
    }

    .page-header h1 {
        font-size: 36px;
    }
}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 768px) {

    .market-page {
        padding-bottom: 50px;
    }

    .page-header {
        padding: 34px 16px 30px;
    }

    .page-header h1 {
        font-size: 30px;
    }

    .page-header p {
        font-size: 13px;
    }

    .result-section,
    .content-section {
        margin-bottom: 34px;
    }

    .section-heading {
        padding: 0 16px;

        margin-bottom: 15px;
    }

    .section-heading h2 {
        font-size: 23px;
    }

    .result-table {
        width: calc(100% - 32px);

        margin-left: 16px;
        margin-right: 16px;
    }

    .result-table table {
        min-width: 390px;
    }

    .result-table th,
    .result-table td {
        padding: 11px 13px;
    }

    .chart-filter {
        width: calc(100% - 32px);

        margin-left: 16px;
        margin-right: 16px;

        flex-direction: column;

        align-items: stretch;
    }

    .filter-item {
        width: 100%;
    }

    .filter-item select,
    .chart-button {
        width: 100%;
    }

    .table-heading {
        margin-left: 16px;
        margin-right: 16px;

        font-size: 18px;
    }

    .yearly-chart {
        width: calc(100% - 32px);

        margin-left: 16px;
        margin-right: 16px;
    }

    .yearly-chart table {
        min-width: 850px;
    }

    .seo-content {
        width: calc(100% - 32px);

        margin-left: 16px;
        margin-right: 16px;

        padding: 22px 17px;
    }

    .seo-content .section-heading {
        margin-left: -17px;
        margin-right: -17px;

        padding-left: 17px;
        padding-right: 17px;
    }
}


/* ==========================================================
   SMALL MOBILE
   ========================================================== */

@media (max-width: 480px) {

    .page-header {
        padding: 30px 14px 27px;
    }

    .page-header h1 {
        font-size: 27px;
    }

    .page-header p {
        font-size: 12.5px;
    }

    .result-table {
        width: calc(100% - 20px);

        margin-left: 10px;
        margin-right: 10px;
    }

    .chart-filter {
        width: calc(100% - 20px);

        margin-left: 10px;
        margin-right: 10px;
    }

    .table-heading {
        margin-left: 10px;
        margin-right: 10px;
    }

    .yearly-chart {
        width: calc(100% - 20px);

        margin-left: 10px;
        margin-right: 10px;
    }

    .seo-content {
        width: calc(100% - 20px);

        margin-left: 10px;
        margin-right: 10px;

        padding: 20px 15px;
    }

    .seo-content .section-heading {
        margin-left: -15px;
        margin-right: -15px;

        padding-left: 15px;
        padding-right: 15px;
    }
}


/* ==========================================================
   FINAL PAGE WIDTH FIX
   Full-width sections / no outer left-right page gaps
   ========================================================== */

html,
body {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.market-page {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0 0 70px;
}

/* Page header stays full width */
.page-header {
    width: 100%;
    max-width: none;
    margin: 0;
}

/* ==========================================================
   TODAY RESULT — FULL WIDTH BOX
   ========================================================== */

.today-result-section {
    width: 100%;
    max-width: none;
    margin: 0 0 42px;
    padding: 0;
    background: #f7f8fa;
    border: 1px solid #e1e5eb;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    box-shadow: 0 8px 28px rgba(20, 35, 58, 0.06);
    overflow: hidden;
}

.today-result-top {
    width: 100%;
    padding: 25px 28px 18px;
}

.today-result-markets {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
    padding: 2px 28px 30px;
}

.today-result-market {
    width: 100%;
    padding: 15px 10px 22px;
    border: 0;
}

.today-result-market + .today-result-market {
    border-top: 0;
    padding-top: 15px;
}

/* Market name */
.today-market-name {
    margin: 0;
    color: #087f5b;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 30px;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.today-result-market:nth-child(2) .today-market-name {
    color: #1769aa;
}

.today-result-market:nth-child(3) .today-market-name {
    color: #087f5b;
}

/* Time */
.today-market-time {
    margin-top: 4px;
    color: #8a94a3;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.25;
}

/* Result */
.today-market-number {
    margin-top: 5px;
    color: #d62828;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 50px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 1px;
}

.today-market-number.is-waiting {
    color: #8a94a3;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 29px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

/* ==========================================================
   ALL OTHER CONTENT — FULL WIDTH BOXES
   Content gets internal padding instead of outer margins
   ========================================================== */

.result-table,
.chart-filter,
.yearly-chart,
.seo-content {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    border-radius: 0;
}

.result-table {
    padding: 0;
}

.chart-filter {
    margin-bottom: 20px;
    padding: 20px 28px;
}

.yearly-chart {
    padding: 0;
}

.seo-content {
    padding: 30px 28px;
}

.table-heading {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    padding: 0 28px;
}

/* Section headings align with page content */
.section-heading {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    padding-left: 28px;
    padding-right: 28px;
}

/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 768px) {

    .market-page {
        padding-bottom: 50px;
    }

    .page-header {
        padding-left: 16px;
        padding-right: 16px;
    }

    .section-heading {
        padding-left: 16px;
        padding-right: 16px;
    }

    .today-result-section {
        width: 100%;
        border-radius: 0;
    }

    .today-result-top {
        padding: 20px 16px 15px;
    }

    .today-result-markets {
        max-width: 100%;
        padding: 0 16px 22px;
    }

    .today-result-market {
        padding: 13px 6px 20px;
    }

    .today-result-market + .today-result-market {
        padding-top: 13px;
    }

    .today-market-name {
        font-size: 24px;
    }

    .today-market-number {
        font-size: 40px;
    }

    .today-market-number.is-waiting {
        font-size: 26px;
    }

    .result-table,
    .chart-filter,
    .yearly-chart,
    .seo-content,
    .table-heading {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .result-table {
        border-left: 0;
        border-right: 0;
        border-radius: 0;
    }

    .chart-filter {
        padding: 16px;
        border-left: 0;
        border-right: 0;
        border-radius: 0;
    }

    .table-heading {
        padding-left: 16px;
        padding-right: 16px;
    }

    .yearly-chart {
        border-left: 0;
        border-right: 0;
        border-radius: 0;
    }

    .seo-content {
        padding: 22px 16px;
        border-left: 0;
        border-right: 0;
        border-radius: 0;
    }

    .seo-content .section-heading {
        padding-left: 16px;
        padding-right: 16px;
    }
}

@media (max-width: 480px) {

    .page-header {
        padding-left: 14px;
        padding-right: 14px;
    }

    .section-heading {
        padding-left: 10px;
        padding-right: 10px;
    }

    .today-result-top {
        padding: 18px 12px 13px;
    }

    .today-result-markets {
        padding-left: 10px;
        padding-right: 10px;
        padding-bottom: 18px;
    }

    .today-market-name {
        font-size: 21px;
    }

    .today-market-number {
        font-size: 36px;
    }

    .today-market-number.is-waiting {
        font-size: 24px;
    }

    .table-heading {
        padding-left: 10px;
        padding-right: 10px;
    }

    .chart-filter {
        padding: 14px 10px;
    }

    .seo-content {
        padding: 20px 12px;
    }
}

/* =========================================================
   TODAY & YESTERDAY
   FULL WIDTH — NO HORIZONTAL SCROLL
   ========================================================= */

.today-yesterday-section {
    width: 100vw !important;
    max-width: 100vw !important;
    margin: 0 !important;
    padding: 32px 0 40px !important;
    box-sizing: border-box;
    overflow: hidden !important;
}


/* =========================================================
   HEADING
   ========================================================= */

.today-yesterday-section .section-heading {
    width: 100%;
    margin: 0 0 20px !important;
    padding: 0 12px;
    box-sizing: border-box;
    text-align: center;
}

.today-yesterday-section .section-eyebrow {
    display: block;
    margin-bottom: 7px;

    font-family: Arial, sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #667184;
}

.today-yesterday-section .section-heading h2 {
    margin: 0;
    padding: 0;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
    line-height: 1.3;
    font-weight: 700;
    color: #172a46;
}


/* =========================================================
   TABLE WRAPPER
   ========================================================= */

.today-yesterday-table-wrap {
    width: 100% !important;
    max-width: 100% !important;

    margin: 0 !important;
    padding: 0 !important;

    overflow: hidden !important;
    box-sizing: border-box;
}


/* =========================================================
   TABLE
   ========================================================= */

.today-yesterday-table {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;

    margin: 0 !important;
    padding: 0;

    table-layout: fixed !important;
    border-collapse: collapse;
    border-spacing: 0;

    background: #ffffff;
}


/* =========================================================
   COLUMN WIDTH
   ========================================================= */

.today-yesterday-table th:nth-child(1),
.today-yesterday-table td:nth-child(1) {
    width: 22%;
}

.today-yesterday-table th:nth-child(2),
.today-yesterday-table td:nth-child(2) {
    width: 17%;
}

.today-yesterday-table th:nth-child(3),
.today-yesterday-table td:nth-child(3) {
    width: 17%;
}

.today-yesterday-table th:nth-child(4),
.today-yesterday-table td:nth-child(4) {
    width: 17%;
}

.today-yesterday-table th:nth-child(5),
.today-yesterday-table td:nth-child(5) {
    width: 27%;
}


/* =========================================================
   HEADER
   ========================================================= */

.today-yesterday-table thead th {
    height: 48px;
    padding: 0 5px;

    box-sizing: border-box;

    background: #172a46;
    color: #ffffff;

    border: 1px solid #172a46;

    font-family: Arial, sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .5px;

    text-align: center;
    vertical-align: middle;

    white-space: nowrap;
}


/* =========================================================
   BODY
   ========================================================= */

.today-yesterday-table tbody td {
    height: 48px;
    padding: 0 5px;

    box-sizing: border-box;

    background: #ffffff;
    color: #172033;

    border: 1px solid #e2e6eb;

    font-family: Arial, sans-serif;
    font-size: 13px;
    font-weight: 600;

    text-align: center;
    vertical-align: middle;

    white-space: nowrap;
    overflow: hidden;
}


/* Market */

.today-yesterday-table tbody .ty-market-name {
    text-align: left;
    padding-left: 12px;

    color: #172a46;
    font-weight: 800;
}


/* Numbers */

.today-yesterday-table tbody .ty-number {
    font-size: 15px;
    font-weight: 800;
}


/* Time */

.today-yesterday-table tbody .ty-market-time {
    font-size: 12px;
}


/* Record */

.today-yesterday-table tbody .ty-record a {
    color: #172a46;

    font-size: 11px;
    font-weight: 700;

    text-decoration: none;
    border-bottom: 1px solid #667184;
    white-space: nowrap;
}


/* =========================================================
   LATEST COMPLETED ROW
   ========================================================= */

.today-yesterday-table tbody tr.latest-result-row td {
    background: #f8d24a !important;
    color: #172033 !important;
    border-color: #e5bd32 !important;
}

.today-yesterday-table tbody tr.latest-result-row .ty-market-name {
    color: #172a46 !important;
    font-weight: 800;
}

.today-yesterday-table tbody tr.latest-result-row .ty-number {
    color: #172033 !important;
    font-weight: 800;
}

.today-yesterday-table tbody tr.latest-result-row .ty-record a {
    color: #172a46 !important;
    border-bottom-color: #172a46;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .today-yesterday-section {
        width: 100vw !important;
        max-width: 100vw !important;

        margin: 0 !important;
        padding: 24px 0 30px !important;

        overflow: hidden !important;
    }

    .today-yesterday-section .section-heading {
        padding: 0 8px;
        margin-bottom: 16px !important;
    }

    .today-yesterday-section .section-heading h2 {
        font-size: 22px;
    }

    .today-yesterday-section .section-eyebrow {
        font-size: 9px;
        letter-spacing: 1.5px;
    }


    /* Table always fits phone */

    .today-yesterday-table-wrap {
        width: 100% !important;
        overflow: hidden !important;
    }

    .today-yesterday-table {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;

        table-layout: fixed !important;
    }


    /* Smaller mobile cells */

    .today-yesterday-table thead th {
        height: 40px;
        padding: 0 2px;
        font-size: 8px;
        letter-spacing: 0;
    }

    .today-yesterday-table tbody td {
        height: 42px;
        padding: 0 2px;
        font-size: 10px;
    }

    .today-yesterday-table tbody .ty-market-name {
        padding-left: 7px;
        font-size: 10px;
    }

    .today-yesterday-table tbody .ty-market-time {
        font-size: 9px;
    }

    .today-yesterday-table tbody .ty-number {
        font-size: 12px;
    }

    .today-yesterday-table tbody .ty-record a {
        font-size: 8px;
    }
}


/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 400px) {

    .today-yesterday-section {
        padding-top: 20px !important;
    }

    .today-yesterday-section .section-heading h2 {
        font-size: 20px;
    }

    .today-yesterday-table thead th {
        font-size: 7px;
    }

    .today-yesterday-table tbody td {
        font-size: 9px;
    }

    .today-yesterday-table tbody .ty-market-name {
        font-size: 9px;
        padding-left: 5px;
    }

    .today-yesterday-table tbody .ty-market-time {
        font-size: 8px;
    }

    .today-yesterday-table tbody .ty-number {
        font-size: 11px;
    }

    .today-yesterday-table tbody .ty-record a {
        font-size: 7px;
    }
}

/* Today & Yesterday — Table Header Fix */

.today-yesterday-table thead th {
    height: 52px !important;
    padding: 0 6px !important;

    font-size: 12px !important;
    font-weight: 800 !important;
    letter-spacing: 0.4px !important;

    line-height: 1.2;
    white-space: nowrap;
}


/* Mobile */
@media (max-width: 768px) {

    .today-yesterday-table thead th {
        height: 44px !important;
        padding: 0 3px !important;

        font-size: 10px !important;
        font-weight: 800 !important;
        letter-spacing: 0.1px !important;
    }
}


/* Small phones */
@media (max-width: 400px) {

    .today-yesterday-table thead th {
        height: 42px !important;
        padding: 0 2px !important;

        font-size: 9px !important;
        font-weight: 800 !important;
    }
}
/* Market Name — Center Align */

.today-yesterday-table tbody .ty-market-name {
    text-align: center !important;
    padding-left: 4px !important;
    padding-right: 4px !important;
}

/* =========================================================
   MONTHLY COMBINED CHART
   TRUE FULL WIDTH
   NO OUTER LEFT/RIGHT GAP
   NO HORIZONTAL SCROLL
   ALL 7 COLUMNS VISIBLE
   ========================================================= */

#monthly-chart {
    width: 100vw !important;
    max-width: 100vw !important;

    margin: 0 !important;
    padding: 32px 0 40px !important;

    box-sizing: border-box;
    overflow: hidden;
}


/* =========================================================
   HEADING
   ========================================================= */

#monthly-chart .section-heading {
    width: 100%;
    margin: 0 0 22px;
    padding: 0 12px;
    box-sizing: border-box;

    text-align: center;
}

#monthly-chart .section-eyebrow {
    display: block;
    margin-bottom: 7px;

    font-family: Arial, sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;

    color: #667184;
}

#monthly-chart .section-heading h2 {
    margin: 0;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
    line-height: 1.3;
    font-weight: 700;

    color: #172a46;
}


/* =========================================================
   FILTER
   ========================================================= */

#monthly-chart .chart-filter {
    width: 100% !important;
    max-width: none !important;

    margin: 0 0 22px !important;
    padding: 18px 12px !important;

    box-sizing: border-box;

    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 12px;

    background: #ffffff;
    border-top: 1px solid #e3e7ed;
    border-bottom: 1px solid #e3e7ed;
}


/* Filter items */

#monthly-chart .filter-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

#monthly-chart .filter-item label {
    font-family: Arial, sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #172a46;
}

#monthly-chart .filter-item select {
    width: 150px;
    height: 40px;

    padding: 0 10px;

    box-sizing: border-box;

    border: 1px solid #d7dce4;
    border-radius: 2px;

    background: #ffffff;
    color: #172033;

    font-family: Arial, sans-serif;
    font-size: 13px;
}


/* Button */

#monthly-chart .chart-button {
    height: 40px;
    padding: 0 18px;

    border: 0;
    border-radius: 2px;

    background: #172a46;
    color: #ffffff;

    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;

    cursor: pointer;
}


/* =========================================================
   TABLE TITLE
   ========================================================= */

#monthly-chart .table-heading {
    width: 100%;

    margin: 0 0 10px !important;
    padding: 0 12px !important;

    box-sizing: border-box;

    font-family: Arial, sans-serif;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 700;

    color: #172a46;
}


/* =========================================================
   TABLE WRAPPER
   ========================================================= */

#monthly-chart .combined-monthly-chart {
    width: 100% !important;
    max-width: none !important;

    margin: 0 !important;
    padding: 0 !important;

    overflow: hidden !important;
}


/* =========================================================
   TABLE
   ========================================================= */

#monthly-chart .combined-monthly-chart table {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;

    margin: 0 !important;
    padding: 0;

    table-layout: fixed !important;
    border-collapse: collapse;
    border-spacing: 0;

    background: #ffffff;
}


/* =========================================================
   COLUMN WIDTHS
   ========================================================= */

/* DATE */

#monthly-chart .combined-monthly-chart th:first-child,
#monthly-chart .combined-monthly-chart td:first-child {
    width: 10%;
}

/* 6 Markets */

#monthly-chart .combined-monthly-chart th:not(:first-child),
#monthly-chart .combined-monthly-chart td:not(:first-child) {
    width: 15%;
}


/* =========================================================
   HEADER
   ========================================================= */

#monthly-chart .combined-monthly-chart th {
    height: 46px;

    padding: 0 3px;

    box-sizing: border-box;

    background: #172a46;
    color: #ffffff;

    border: 1px solid #172a46;

    font-family: Arial, sans-serif;
    font-size: 10px;
    font-weight: 700;

    text-align: center;
    vertical-align: middle;

    white-space: nowrap;
}


/* =========================================================
   BODY
   ========================================================= */

#monthly-chart .combined-monthly-chart td {
    height: 43px;

    padding: 0 2px;

    box-sizing: border-box;

    background: #ffffff;
    color: #172033;

    border: 1px solid #e1e5eb;

    font-family: Arial, sans-serif;
    font-size: 13px;
    font-weight: 600;

    text-align: center;
    vertical-align: middle;

    white-space: nowrap;
    overflow: hidden;
}


/* Date */

#monthly-chart .combined-monthly-chart td:first-child {
    color: #172a46;
    font-weight: 800;
}


/* Hover */

#monthly-chart .combined-monthly-chart tbody tr:hover td {
    background: #fafbfc;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

    #monthly-chart {
        width: 100vw !important;
        max-width: 100vw !important;

        margin: 0 !important;
        padding: 24px 0 30px !important;

        overflow: hidden !important;
    }


    /* Heading */

    #monthly-chart .section-heading {
        padding: 0 8px;
        margin-bottom: 18px;
    }

    #monthly-chart .section-heading h2 {
        font-size: 23px;
    }

    #monthly-chart .section-eyebrow {
        font-size: 9px;
        letter-spacing: 1.6px;
    }


    /* Filter */

    #monthly-chart .chart-filter {
        width: 100% !important;

        margin: 0 0 18px !important;
        padding: 14px 8px !important;

        display: grid;

        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    #monthly-chart .filter-item {
        width: 100%;
        min-width: 0;
    }

    #monthly-chart .filter-item select {
        width: 100%;
        min-width: 0;
        height: 38px;

        font-size: 12px;
    }

    #monthly-chart .chart-button {
        width: 100%;
        grid-column: 1 / -1;

        height: 40px;
    }


    /* Table heading */

    #monthly-chart .table-heading {
        padding: 0 8px !important;

        font-size: 13px;
    }


    /* =====================================================
       CRITICAL:
       ALL 7 COLUMNS MUST FIT INSIDE PHONE WIDTH
       ===================================================== */

    #monthly-chart .combined-monthly-chart {
        width: 100% !important;
        max-width: 100% !important;

        overflow: hidden !important;
    }

    #monthly-chart .combined-monthly-chart table {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;

        table-layout: fixed !important;
    }


    /* Header */

    #monthly-chart .combined-monthly-chart th {
        height: 40px;

        padding: 0 1px;

        font-size: 8px;
        letter-spacing: 0;

        white-space: nowrap;
    }


    /* Cells */

    #monthly-chart .combined-monthly-chart td {
        height: 38px;

        padding: 0 1px;

        font-size: 11px;

        white-space: nowrap;
        overflow: hidden;
    }
}


/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 400px) {

    #monthly-chart {
        padding-top: 20px !important;
    }

    #monthly-chart .section-heading h2 {
        font-size: 21px;
    }

    #monthly-chart .combined-monthly-chart th {
        font-size: 7px;
        height: 37px;
    }

    #monthly-chart .combined-monthly-chart td {
        font-size: 10px;
        height: 36px;
    }
}

/* =========================================================
   MONTHLY + YEARLY CHART HEADER
   ========================================================= */

.combined-monthly-chart table thead th,
.yearly-chart table thead th {
    height: 48px !important;
    padding: 0 5px !important;

    font-size: 11px !important;
    font-weight: 800 !important;
    letter-spacing: 0.4px !important;

    text-align: center !important;
    vertical-align: middle !important;
    white-space: nowrap !important;
}


/* Mobile */

@media (max-width: 768px) {

    .combined-monthly-chart table thead th,
    .yearly-chart table thead th {
        height: 42px !important;
        padding: 0 2px !important;

        font-size: 9px !important;
        font-weight: 800 !important;
        letter-spacing: 0.1px !important;
    }
}


/* Small phones */

@media (max-width: 400px) {

    .combined-monthly-chart table thead th,
    .yearly-chart table thead th {
        height: 40px !important;

        font-size: 8px !important;
        font-weight: 800 !important;
    }
}

/* =========================================================
   POPULAR MARKETS
========================================================= */

.popular-markets-section {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 50px 0 60px;
    background: #ffffff;
    box-sizing: border-box;
}

.popular-markets-heading {
    width: 100%;
    margin: 0 0 28px;
    padding: 0 20px;
    box-sizing: border-box;
    text-align: center;
}

.popular-markets-heading .section-eyebrow {
    display: block;
    margin-bottom: 8px;
    color: #667184;
    font: 700 10px/1.2 Arial, sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.popular-markets-heading h2 {
    margin: 0;
    color: #172a46;
    font: 700 28px/1.3 Georgia, "Times New Roman", serif;
}

.popular-markets-heading p {
    margin: 8px 0 0;
    color: #687386;
    font: 14px/1.6 Arial, sans-serif;
}


/* GRID */

.popular-markets-grid {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0 16px;
    box-sizing: border-box;

    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}


/* CARD */

.popular-market-card {
    position: relative;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    min-height: 128px;

    padding: 20px;
    box-sizing: border-box;

    background: #ffffff;
    border: 1px solid #e2e6eb;
    border-top: 3px solid #667184;

    text-decoration: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.popular-market-card:hover {
    border-color: #fff;
    box-shadow: 0 8px 24px rgba(23, 42, 70, 0.08);
    transform: translateY(-2px);
}


/* TOP */

.popular-market-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.popular-market-card h3 {
    margin: 0;
    color: #172a46;
    font: 700 18px/1.25 Arial, sans-serif;
}

.popular-market-type {
    display: block;
    margin-top: 4px;
    color: #7a8494;
    font: 12px/1.4 Arial, sans-serif;
}

.popular-market-arrow {
    flex: 0 0 auto;

    color: #667184;
    font: 700 22px/1 Arial, sans-serif;

    transition: transform 0.2s ease;
}

.popular-market-card:hover .popular-market-arrow {
    transform: translateX(4px);
}


/* BOTTOM */

.popular-market-card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;

    margin-top: 20px;
}

.popular-market-time {
    display: inline-flex;
    align-items: center;

    min-height: 26px;
    padding: 0 9px;

    background: #f7f8fa;
    border: 1px solid #e5e8ed;

    color: #172a46;
    font: 700 11px/1 Arial, sans-serif;
    letter-spacing: 0.3px;
}

.popular-market-link {
    color: #596579;
    font: 700 11px/1 Arial, sans-serif;
    white-space: nowrap;
}


/* =========================================================
   MOBILE — 2 × 3
========================================================= */

@media (max-width: 768px) {

    .popular-markets-section {
        padding: 38px 0 45px;
    }

    .popular-markets-heading {
        margin-bottom: 22px;
        padding: 0 14px;
    }

    .popular-markets-heading h2 {
        font-size: 23px;
    }

    .popular-markets-heading p {
        font-size: 13px;
    }

    .popular-markets-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        padding: 0 10px;
    }

    .popular-market-card {
        min-height: 116px;
        padding: 15px;
    }

    .popular-market-card h3 {
        font-size: 15px;
    }

    .popular-market-type {
        font-size: 11px;
    }

    .popular-market-arrow {
        font-size: 19px;
    }

    .popular-market-card-bottom {
        margin-top: 15px;
        align-items: flex-end;
    }

    .popular-market-time {
        min-height: 24px;
        padding: 0 7px;
        font-size: 10px;
    }

    .popular-market-link {
        font-size: 10px;
    }
}


/* SMALL MOBILE */

@media (max-width: 400px) {

    .popular-markets-grid {
        gap: 8px;
        padding: 0 8px;
    }

    .popular-market-card {
        min-height: 110px;
        padding: 13px;
    }

    .popular-market-card h3 {
        font-size: 14px;
    }

    .popular-market-link {
        font-size: 9px;
    }

    .popular-market-time {
        font-size: 9px;
    }
}
/* =========================================================
   DUBAIBAAZAR — SITE HEADER
   FINAL VERSION
========================================================= */

.site-header {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 9999;

    width: 100%;
    max-width: 100%;

    margin: 0;
    padding: 0;

    background: #ffffff;

    border-bottom: 1px solid #e3e6ea;

    box-sizing: border-box;
}


/* =========================================================
   BRAND ROW
========================================================= */

.site-header-brand {
    width: 100%;

    margin: 0;
    padding: 9px 20px;

    background: #ffffff;

    box-sizing: border-box;
}


.site-brand {
    display: inline-flex;
    align-items: center;

    margin: 0;
    padding: 0;

    color: #172a46;

    text-decoration: none;

    box-sizing: border-box;
}


/* Trophy / Brand Icon */

.site-brand-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 28px;
    height: 28px;

    margin-right: 8px;

    font-size: 17px;
    line-height: 1;

    flex: 0 0 auto;
}


/* Brand Text */

.site-brand-text {
    display: flex;
    flex-direction: column;

    margin: 0;
    padding: 0;

    line-height: 1;
}


.site-brand-text strong {
    display: block;

    margin: 0;

    color: #172a46;

    font-family: Arial, sans-serif;
    font-size: 21px;
    font-weight: 800;

    letter-spacing: 0.2px;

    line-height: 1;
}


.site-brand-text small {
    display: block;

    margin-top: 4px;

    color: #667184;

    font-family: Arial, sans-serif;
    font-size: 8px;
    font-weight: 800;

    letter-spacing: 1.6px;

    line-height: 1;
}


/* =========================================================
   NAVIGATION BAR
========================================================= */

.site-navigation {
    width: 100%;
    max-width: 100%;

    margin: 0;
    padding: 0;

    background: #ffffff;

    border-top: 1px solid #f0f1f3;

    box-sizing: border-box;

    overflow: hidden;
}


/* Navigation scroll area */

.site-navigation-scroll {
    display: flex;
    align-items: center;

    width: 100%;
    max-width: 100%;

    margin: 0;
    padding: 0;

    gap: 0;

    overflow-x: auto;
    overflow-y: hidden;

    white-space: nowrap;

    scrollbar-width: none;

    -webkit-overflow-scrolling: touch;

    box-sizing: border-box;
}


.site-navigation-scroll::-webkit-scrollbar {
    display: none;
}


/* =========================================================
   NAVIGATION LINKS
========================================================= */

.site-navigation a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 auto;

    height: 42px;

    margin: 0;
    padding: 0 17px;

    color: #26354a;

    background: #ffffff;

    font-family: Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;

    text-decoration: none;

    border-right: 1px solid #eef0f2;

    box-sizing: border-box;

    transition:
        color 0.18s ease,
        background 0.18s ease;
}


.site-navigation a:hover {
    color: #172a46;

    background: #f7f8fa;
}


/* Active Page */

.site-navigation a.active {
    color: #172a46;

    background: #faf7ef;

    box-shadow: inset 0 -3px 0 #667184;
}


/* =========================================================
   DESKTOP
========================================================= */

@media (min-width: 769px) {

    .site-header-brand {
        padding: 10px 22px;
    }


    .site-brand-icon {
        width: 30px;
        height: 30px;

        margin-right: 9px;

        font-size: 18px;
    }


    .site-brand-text strong {
        font-size: 22px;
    }


    .site-brand-text small {
        font-size: 8px;
        letter-spacing: 1.8px;
    }


    .site-navigation-scroll {
        overflow-x: visible;
    }


    .site-navigation a {
        height: 44px;

        padding: 0 18px;

        font-size: 14px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .site-header {
        width: 100%;
        max-width: 100%;
    }


    /* Brand */

    .site-header-brand {
        width: 100%;

        padding: 8px 12px;
    }


    .site-brand-icon {
        width: 25px;
        height: 25px;

        margin-right: 7px;

        font-size: 15px;
    }


    .site-brand-text strong {
        font-size: 19px;
        letter-spacing: 0.1px;
    }


    .site-brand-text small {
        margin-top: 4px;

        font-size: 7px;
        letter-spacing: 1.5px;
    }


    /* Navigation */

    .site-navigation {
        width: 100%;
        max-width: 100%;

        overflow: hidden;
    }


    .site-navigation-scroll {
        width: 100%;
        max-width: 100%;

        overflow-x: auto;
        overflow-y: hidden;

        padding-right: 10px;
    }


    .site-navigation a {
        height: 40px;

        padding: 0 14px;

        font-size: 13px;
        font-weight: 700;

        border-right: 1px solid #eef0f2;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .site-header-brand {
        padding: 7px 10px;
    }


    .site-brand-icon {
        width: 23px;
        height: 23px;

        margin-right: 6px;

        font-size: 14px;
    }


    .site-brand-text strong {
        font-size: 18px;
    }


    .site-brand-text small {
        font-size: 6.5px;
        letter-spacing: 1.3px;
    }


    .site-navigation a {
        height: 39px;

        padding: 0 13px;

        font-size: 12px;
    }

}


/* =========================================================
   MOBILE — PREVENT PAGE HORIZONTAL SCROLL
   Navigation itself remains horizontally scrollable
========================================================= */

html,
body {
    max-width: 100%;
}


@media (max-width: 768px) {

    html,
    body {
        overflow-x: hidden;
    }

}
/* =========================================================
   DUBAIBAAZAR — SIMPLE FOOTER
========================================================= */

.site-footer {
    width: 100%;
    max-width: 100%;

    margin: 0;
    padding: 30px 0 0;

    background: #f7f8fa;
    color: #172033;

    border-top: 1px solid #e5e7eb;

    box-sizing: border-box;
}


/* =========================================================
   FOOTER INNER
========================================================= */

.site-footer-inner {
    width: 100%;
    max-width: 100%;

    margin: 0;
    padding: 0 20px 25px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;

    box-sizing: border-box;
}


/* =========================================================
   FOOTER BRAND
========================================================= */

.site-footer-brand {
    display: flex;
    flex-direction: column;

    margin: 0;
    padding: 0;

    line-height: 1;
}


.site-footer-brand strong {
    display: block;

    margin: 0;

    color: #172a46;

    font-family: Arial, sans-serif;
    font-size: 19px;
    font-weight: 800;

    letter-spacing: 0.3px;

    line-height: 1;
}


.site-footer-brand span {
    display: block;

    margin-top: 5px;

    color: #667184;

    font-family: Arial, sans-serif;
    font-size: 8px;
    font-weight: 800;

    letter-spacing: 1.7px;

    line-height: 1;
}


/* =========================================================
   FOOTER LINKS
========================================================= */

.site-footer-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    margin: 0;
    padding: 0;

    gap: 20px;

    flex-wrap: wrap;
}


.site-footer-links a {
    display: inline-block;

    margin: 0;
    padding: 4px 0;

    color: #4b5565;

    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: 600;

    text-decoration: none;

    white-space: nowrap;

    transition:
        color 0.2s ease;
}


.site-footer-links a:hover {
    color: #172a46;
}


/* =========================================================
   FOOTER BOTTOM / COPYRIGHT
========================================================= */

.site-footer-bottom {
    width: 100%;

    margin: 0;
    padding: 13px 20px;

    border-top: 1px solid #e5e7eb;

    color: #7a8494;

    font-family: Arial, sans-serif;
    font-size: 11px;
    font-weight: 400;

    line-height: 1.5;

    text-align: center;

    box-sizing: border-box;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .site-footer {
        width: 100%;
        max-width: 100%;

        padding: 25px 0 0;
    }


    .site-footer-inner {
        width: 100%;
        max-width: 100%;

        padding: 0 12px 20px;

        flex-direction: column;
        align-items: center;
        justify-content: center;

        gap: 17px;

        text-align: center;
    }


    /* Brand */

    .site-footer-brand {
        align-items: center;
    }


    .site-footer-brand strong {
        font-size: 18px;
    }


    .site-footer-brand span {
        margin-top: 5px;

        font-size: 7px;
        letter-spacing: 1.5px;
    }


    /* Links */

    .site-footer-links {
        width: 100%;

        align-items: center;
        justify-content: center;

        gap: 8px 17px;
    }


    .site-footer-links a {
        padding: 3px 0;

        font-size: 11px;
    }


    /* Copyright */

    .site-footer-bottom {
        padding: 11px 10px;

        font-size: 10px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .site-footer {
        padding-top: 22px;
    }


    .site-footer-inner {
        padding-left: 10px;
        padding-right: 10px;
        padding-bottom: 18px;

        gap: 15px;
    }


    .site-footer-brand strong {
        font-size: 17px;
    }


    .site-footer-brand span {
        font-size: 6.5px;
    }


    .site-footer-links {
        gap: 7px 14px;
    }


    .site-footer-links a {
        font-size: 10px;
    }


    .site-footer-bottom {
        padding: 10px 8px;

        font-size: 9.5px;
    }

}


/* =========================================================
   FULL-WIDTH SAFETY
========================================================= */

.site-footer,
.site-footer-inner,
.site-footer-bottom {
    box-sizing: border-box;
}

.home-hero {
    width: 100%;
    margin: 0;
    padding: 56px 20px 62px;
    background: #f7f8fa;
    box-sizing: border-box;
}

.home-hero-inner {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    box-sizing: border-box;
}

.home-hero-eyebrow {
    margin: 0 0 12px;
    color: #667184;
    font-family: Arial, sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 3px;
    line-height: 1;
}

.home-hero h1 {
    margin: 0;
    color: #172a46;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
}

.home-hero-divider {
    width: 47px;
    height: 2px;
    margin: 17px auto 17px;
    background: #667184;
}

.home-hero-description {
    margin: 0;
    color: #596779;
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 1.5;
}

.home-hero-date {
    margin-top: 21px;
    color: #d62828;
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
}

.home-hero-live {
    margin-top: 4px;
    color: #667184;
    font-family: Arial, sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
}

.home-hero-results {
    width: 100%;
    margin-top: 39px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.home-hero-result {
    display: flex;
    flex-direction: column;
    align-items: center;

    width: 100%;
    margin: 0;
    padding: 0 10px 34px;

    text-decoration: none;
    box-sizing: border-box;
}

.home-hero-result:last-child {
    padding-bottom: 0;
}

.home-hero-market-name {
    color: #1769aa;
    font-family: Arial, sans-serif;
    font-size: 30px;
    font-weight: 800;
    letter-spacing: 0.3px;
    line-height: 1.15;
}

.home-hero-value {
    margin-top: 7px;
    color: #d62828;
    font-family: Arial, sans-serif;
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
}

.home-hero-wait {
    color: #087f5b;
    font-size: 28px;
    letter-spacing: 1px;
}

.home-hero-result:hover .home-hero-market-name {
    color: #0f5f91;
}


@media (max-width: 768px) {

    .home-hero {
        padding: 43px 12px 52px;
    }

    .home-hero-eyebrow {
        font-size: 9px;
        letter-spacing: 2.5px;
    }

    .home-hero h1 {
        font-size: 31px;
    }

    .home-hero-description {
        font-size: 13px;
    }

    .home-hero-date {
        margin-top: 19px;
        font-size: 14px;
    }

    .home-hero-live {
        font-size: 14px;
    }

    .home-hero-results {
        margin-top: 34px;
    }

    .home-hero-result {
        padding-bottom: 30px;
    }

    .home-hero-market-name {
        font-size: 27px;
    }

    .home-hero-value,
    .home-hero-wait {
        font-size: 26px;
    }
}


@media (max-width: 400px) {

    .home-hero {
        padding: 36px 10px 46px;
    }

    .home-hero h1 {
        font-size: 28px;
    }

    .home-hero-description {
        font-size: 12px;
    }

    .home-hero-date {
        font-size: 13px;
    }

    .home-hero-live {
        font-size: 13px;
    }

    .home-hero-market-name {
        font-size: 25px;
    }

    .home-hero-value,
    .home-hero-wait {
        font-size: 24px;
    }
}
/* =========================================================
   HOME - MONTHLY COMBINED CHART
   ========================================================= */

.home-monthly-chart {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 42px 20px 48px !important;
    background: #f7f8fa;
    box-sizing: border-box !important;
}


/* =========================================================
   HEADING
   ========================================================= */

.home-monthly-chart .section-heading {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 0 24px !important;
    padding: 0 !important;
    text-align: center;
    box-sizing: border-box;
}

.home-monthly-chart .section-heading h2 {
    margin: 0;
    padding: 0;
    color: #172a46;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.25;
}

.home-monthly-chart .section-heading p {
    margin: 8px 0 0;
    padding: 0;
    color: #667184;
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 1.5;
}


/* =========================================================
   YEAR / MONTH FILTER
   ========================================================= */

.home-monthly-chart .chart-filter {
    display: flex !important;
    align-items: flex-end !important;
    justify-content: center !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 0 24px !important;
    padding: 0 !important;
    gap: 14px;
    box-sizing: border-box;
}

.home-monthly-chart .chart-filter-group {
    display: flex;
    flex-direction: column;
    width: 148px;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.home-monthly-chart .chart-filter-group label {
    display: block;
    margin: 0 0 6px;
    padding: 0;
    color: #172a46;
    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
}

.home-monthly-chart .chart-filter-group select {
    display: block;
    width: 100% !important;
    height: 43px;
    margin: 0;
    padding: 0 10px;
    color: #172033;
    background: #ffffff;
    border: 1px solid #d8dee6;
    border-radius: 5px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    box-sizing: border-box;
}


/* =========================================================
   TABLE WRAPPER
   ========================================================= */

.home-monthly-chart .combined-monthly-chart-table {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
}


/* =========================================================
   TABLE
   ========================================================= */

.home-monthly-chart .combined-monthly-chart-table table {
    display: table !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    table-layout: fixed !important;
    border-collapse: collapse !important;
    border-spacing: 0 !important;
    box-sizing: border-box !important;
}


/* =========================================================
   TABLE HEADER
   ========================================================= */

.home-monthly-chart .combined-monthly-chart-table thead th {
    height: 48px !important;
    padding: 0 5px !important;
    color: #ffffff !important;
    background: #172a46 !important;
    border: 1px solid #172a46 !important;
    font-family: Arial, sans-serif !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    letter-spacing: .3px !important;
    line-height: 1 !important;
    text-align: center !important;
    vertical-align: middle !important;
    white-space: nowrap !important;
    box-sizing: border-box !important;
}


/* =========================================================
   TABLE BODY
   ========================================================= */

.home-monthly-chart .combined-monthly-chart-table tbody td {
    height: 43px !important;
    padding: 7px 4px !important;
    color: #172033 !important;
    background: #ffffff !important;
    border: 1px solid #e5e7eb !important;
    font-family: Arial, sans-serif !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
    text-align: center !important;
    vertical-align: middle !important;
    box-sizing: border-box !important;
}

.home-monthly-chart .combined-monthly-chart-table tbody tr:nth-child(even) td {
    background: #fafafa !important;
}


/* =========================================================
   COLUMN WIDTH
   ========================================================= */

.home-monthly-chart .combined-monthly-chart-table th:first-child,
.home-monthly-chart .combined-monthly-chart-table td:first-child {
    width: 18% !important;
}

.home-monthly-chart .combined-monthly-chart-table th:nth-child(2),
.home-monthly-chart .combined-monthly-chart-table td:nth-child(2),
.home-monthly-chart .combined-monthly-chart-table th:nth-child(3),
.home-monthly-chart .combined-monthly-chart-table td:nth-child(3),
.home-monthly-chart .combined-monthly-chart-table th:nth-child(4),
.home-monthly-chart .combined-monthly-chart-table td:nth-child(4),
.home-monthly-chart .combined-monthly-chart-table th:nth-child(5),
.home-monthly-chart .combined-monthly-chart-table td:nth-child(5),
.home-monthly-chart .combined-monthly-chart-table th:nth-child(6),
.home-monthly-chart .combined-monthly-chart-table td:nth-child(6),
.home-monthly-chart .combined-monthly-chart-table th:nth-child(7),
.home-monthly-chart .combined-monthly-chart-table td:nth-child(7) {
    width: 13.666% !important;
}


/* =========================================================
   EMPTY
   ========================================================= */

.home-monthly-chart .chart-empty {
    width: 100% !important;
    padding: 25px 15px;
    color: #667184;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    text-align: center;
    font-family: Arial, sans-serif;
    font-size: 14px;
    box-sizing: border-box;
}


/* =========================================================
   FULL CHART BUTTON
   ========================================================= */

.home-monthly-chart .home-monthly-chart-cta {
    width: 100%;
    margin: 24px 0 0;
    padding: 0;
    text-align: center;
    box-sizing: border-box;
}

.home-monthly-chart .home-monthly-chart-cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 43px;
    padding: 0 22px;
    color: #ffffff;
    background: #172a46;
    border-radius: 4px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    box-sizing: border-box;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .home-monthly-chart {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 34px 0 40px !important;
    }

    .home-monthly-chart .section-heading {
        padding: 0 12px !important;
        margin-bottom: 21px !important;
    }

    .home-monthly-chart .section-heading h2 {
        font-size: 25px;
    }

    .home-monthly-chart .section-heading p {
        font-size: 14px;
    }


    /* FILTER */

    .home-monthly-chart .chart-filter {
        width: 100% !important;
        padding: 0 12px !important;
        margin-bottom: 22px !important;
        gap: 10px;
    }

    .home-monthly-chart .chart-filter-group {
        width: auto;
        flex: 1 1 0;
        min-width: 0;
    }

    .home-monthly-chart .chart-filter-group label {
        font-size: 12px;
    }

    .home-monthly-chart .chart-filter-group select {
        width: 100% !important;
        height: 44px;
        padding: 0 9px;
        font-size: 14px;
    }


    /* FULL WIDTH TABLE */

    .home-monthly-chart .combined-monthly-chart-table {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
    }

    .home-monthly-chart .combined-monthly-chart-table table {
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        table-layout: fixed !important;
    }

    .home-monthly-chart .combined-monthly-chart-table thead th {
        height: 46px !important;
        padding: 0 2px !important;
        font-size: 11px !important;
    }

    .home-monthly-chart .combined-monthly-chart-table tbody td {
        height: 43px !important;
        padding: 7px 2px !important;
        font-size: 14px !important;
        font-weight: 700 !important;
    }


    /* BUTTON */

    .home-monthly-chart .home-monthly-chart-cta {
        padding: 0 12px;
    }

    .home-monthly-chart .home-monthly-chart-cta a {
        width: 100%;
        min-height: 44px;
        font-size: 14px;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 400px) {

    .home-monthly-chart .section-heading h2 {
        font-size: 23px;
    }

    .home-monthly-chart .section-heading p {
        font-size: 13px;
    }

    .home-monthly-chart .chart-filter {
        padding: 0 10px !important;
        gap: 8px;
    }

    .home-monthly-chart .chart-filter-group label {
        font-size: 11px;
    }

    .home-monthly-chart .chart-filter-group select {
        height: 43px;
        font-size: 13px;
    }

    .home-monthly-chart .combined-monthly-chart-table thead th {
        font-size: 10px !important;
    }

    .home-monthly-chart .combined-monthly-chart-table tbody td {
        font-size: 13px !important;
    }

    .home-monthly-chart .home-monthly-chart-cta {
        padding: 0 10px;
    }
}
/* =========================================================
   HOME MONTHLY CHART - MOBILE FILTER FIX
   ========================================================= */

@media (max-width: 768px) {

    .home-monthly-chart .chart-filter {
        display: flex !important;
        flex-direction: row !important;
        align-items: flex-end !important;
        justify-content: center !important;
        width: 100% !important;
        padding: 0 12px !important;
        margin: 0 0 22px !important;
        gap: 12px !important;
        box-sizing: border-box !important;
    }

    .home-monthly-chart .chart-filter-group {
        display: flex !important;
        flex-direction: column !important;
        flex: 0 0 145px !important;
        width: 145px !important;
        min-width: 145px !important;
        margin: 0 !important;
    }

    .home-monthly-chart .chart-filter-group label {
        display: block !important;
        width: 100% !important;
        margin: 0 0 6px !important;
        text-align: left !important;
        font-size: 12px !important;
    }

    .home-monthly-chart .chart-filter-group select {
        display: block !important;
        width: 145px !important;
        min-width: 145px !important;
        height: 43px !important;
        margin: 0 !important;
        padding: 0 10px !important;
        font-size: 14px !important;
        box-sizing: border-box !important;
    }
}


/* Small phones */

@media (max-width: 400px) {

    .home-monthly-chart .chart-filter {
        gap: 8px !important;
        padding: 0 10px !important;
    }

    .home-monthly-chart .chart-filter-group {
        flex: 0 0 135px !important;
        width: 135px !important;
        min-width: 135px !important;
    }

    .home-monthly-chart .chart-filter-group select {
        width: 135px !important;
        min-width: 135px !important;
        height: 42px !important;
        font-size: 13px !important;
    }
}
/* =========================================================
   HOME YEARLY CHART - FILTER
   ========================================================= */

.home-yearly-chart .chart-filter {
    width: 100%;
    max-width: 620px;
    margin: 0 auto 26px;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end;
    gap: 14px;
    box-sizing: border-box;
}

.home-yearly-chart .chart-filter-group {
    width: 100%;
    min-width: 0;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.home-yearly-chart .chart-filter-group label {
    display: block;
    margin: 0 0 6px;
    padding: 0;
    color: #4b5565;
    font-family: Arial, sans-serif;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.2;
}

.home-yearly-chart .chart-filter-group select {
    display: block;
    width: 100%;
    height: 42px;
    margin: 0;
    padding: 0 34px 0 12px;
    color: #172033;
    background: #ffffff;
    border: 1px solid #d9dee5;
    border-radius: 4px;
    outline: none;
    font-family: Arial, sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 42px;
    box-sizing: border-box;
    cursor: pointer;
}

.home-yearly-chart .chart-filter-group select:hover {
    border-color: #667184;
}

.home-yearly-chart .chart-filter-group select:focus {
    border-color: #667184;
    box-shadow: 0 0 0 2px rgba(196, 154, 69, 0.10);
}


/* =========================================================
   MOBILE FILTER
   ========================================================= */

@media (max-width: 768px) {

    .home-yearly-chart .chart-filter {
        width: 100%;
        max-width: 100%;
        margin: 0 auto 22px;
        padding: 0 12px;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        box-sizing: border-box;
    }

    .home-yearly-chart .chart-filter-group {
        width: 100%;
    }

    .home-yearly-chart .chart-filter-group label {
        margin-bottom: 5px;
        font-size: 10px;
    }

    .home-yearly-chart .chart-filter-group select {
        width: 100%;
        height: 40px;
        padding: 0 28px 0 10px;
        font-size: 12px;
        line-height: 40px;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 400px) {

    .home-yearly-chart .chart-filter {
        padding: 0 10px;
        gap: 8px;
    }

    .home-yearly-chart .chart-filter-group label {
        font-size: 9px;
    }

    .home-yearly-chart .chart-filter-group select {
        height: 38px;
        padding-left: 9px;
        padding-right: 24px;
        font-size: 11px;
        line-height: 38px;
    }
}
/* =========================================================
   HOME YEARLY CHART - FINAL ALIGNMENT
   ========================================================= */

.home-yearly-chart .section-heading {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 24px;
    padding: 0 20px;
    text-align: center;
    box-sizing: border-box;
}

.home-yearly-chart .section-heading h2 {
    margin: 0;
    color: #172a46;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
}

.home-yearly-chart .section-heading p {
    margin: 9px 0 0;
    color: #667184;
    font-family: Arial, sans-serif;
    font-size: 13px;
    line-height: 1.5;
    text-align: center;
}


/* ---------------------------------------------------------
   FILTER
   --------------------------------------------------------- */

.home-yearly-chart .chart-filter {
    width: 100%;
    max-width: 680px;
    margin: 0 auto 28px;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    box-sizing: border-box;
}

.home-yearly-chart .chart-filter-group {
    width: 100%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.home-yearly-chart .chart-filter-group label {
    margin: 0 0 6px;
    color: #4b5565;
    font-family: Arial, sans-serif;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.2;
}

.home-yearly-chart .chart-filter-group select {
    width: 100%;
    height: 44px;
    margin: 0;
    padding: 0 12px;
    color: #172033;
    background: #ffffff;
    border: 1px solid #d9dee5;
    border-radius: 4px;
    outline: none;
    font-family: Arial, sans-serif;
    font-size: 13px;
    font-weight: 600;
    box-sizing: border-box;
}


/* ---------------------------------------------------------
   TABLE
   --------------------------------------------------------- */

.home-yearly-chart .yearly-chart-table-wrap {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: auto;
    overflow-y: hidden;
    box-sizing: border-box;
}


/* ---------------------------------------------------------
   MOBILE
   --------------------------------------------------------- */

@media (max-width: 768px) {

    .home-yearly-chart {
        padding: 38px 0 48px;
    }

    .home-yearly-chart .section-heading {
        padding: 0 12px;
        margin-bottom: 21px;
    }

    .home-yearly-chart .section-heading h2 {
        font-size: 26px;
    }

    .home-yearly-chart .section-heading p {
        font-size: 12px;
        text-align: center;
    }

    .home-yearly-chart .chart-filter {
        width: 100%;
        max-width: 100%;
        padding: 0 12px;
        margin-bottom: 22px;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .home-yearly-chart .chart-filter-group label {
        font-size: 10px;
    }

    .home-yearly-chart .chart-filter-group select {
        height: 40px;
        padding: 0 9px;
        font-size: 12px;
    }
}


/* ---------------------------------------------------------
   SMALL MOBILE
   --------------------------------------------------------- */

@media (max-width: 400px) {

    .home-yearly-chart .section-heading {
        padding: 0 10px;
    }

    .home-yearly-chart .section-heading h2 {
        font-size: 24px;
    }

    .home-yearly-chart .section-heading p {
        font-size: 11px;
    }

    .home-yearly-chart .chart-filter {
        padding: 0 10px;
        gap: 8px;
    }

    .home-yearly-chart .chart-filter-group select {
        height: 38px;
        font-size: 11px;
    }
}
/* =========================================================
   HOME YEARLY CHART
   SAME LAYOUT AS MONTHLY CHART
   ========================================================= */

.home-yearly-chart {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 45px 0 55px;
    background: #f7f8fa;
    box-sizing: border-box;
}

/* ---------------------------------------------------------
   HEADING
   --------------------------------------------------------- */

.home-yearly-chart .section-heading {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 25px;
    padding: 0 20px;
    text-align: center;
    box-sizing: border-box;
}

.home-yearly-chart .section-heading h2 {
    margin: 0;
    color: #172a46;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
}

.home-yearly-chart .section-heading p {
    margin: 9px 0 0;
    color: #667184;
    font-family: Arial, sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
}


/* ---------------------------------------------------------
   FILTER STRIP
   SAME AS MONTHLY
   --------------------------------------------------------- */

.home-yearly-chart .chart-filter {
    width: 100%;
    max-width: 100%;
    margin: 0 auto 24px;
    padding: 20px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 14px;
    background: #ffffff;
    border-top: 1px solid #e1e5e9;
    border-bottom: 1px solid #e1e5e9;
    box-sizing: border-box;
}

.home-yearly-chart .chart-filter-group {
    width: 162px;
    min-width: 0;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.home-yearly-chart .chart-filter-group label {
    display: block;
    margin: 0 0 6px;
    color: #4b5565;
    font-family: Arial, sans-serif;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.2;
}

.home-yearly-chart .chart-filter-group select {
    display: block;
    width: 100%;
    height: 44px;
    margin: 0;
    padding: 0 12px;
    color: #172033;
    background: #ffffff;
    border: 1px solid #d9dee5;
    border-radius: 4px;
    outline: none;
    font-family: Arial, sans-serif;
    font-size: 13px;
    font-weight: 600;
    box-sizing: border-box;
    cursor: pointer;
}

.home-yearly-chart .chart-filter-group select:focus {
    border-color: #667184;
    box-shadow: 0 0 0 2px rgba(196, 154, 69, 0.10);
}


/* ---------------------------------------------------------
   YEARLY TABLE
   --------------------------------------------------------- */

.home-yearly-chart .yearly-chart-table-wrap {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: auto;
    overflow-y: hidden;
    box-sizing: border-box;
}

.home-yearly-chart-table {
    width: 100%;
    min-width: 700px;
    margin: 0;
    padding: 0;
    border-collapse: collapse;
    table-layout: fixed;
    background: #ffffff;
    font-family: Arial, sans-serif;
}

.home-yearly-chart-table th,
.home-yearly-chart-table td {
    border-right: 1px solid #e7eaed;
    border-bottom: 1px solid #e7eaed;
    text-align: center;
    vertical-align: middle;
    box-sizing: border-box;
}

.home-yearly-chart-table th:last-child,
.home-yearly-chart-table td:last-child {
    border-right: 0;
}


/* ---------------------------------------------------------
   TABLE HEADER
   --------------------------------------------------------- */

.home-yearly-chart-table thead th {
    height: 48px;
    padding: 0 5px;
    color: #ffffff;
    background: #172a46;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.4px;
    line-height: 1;
    white-space: nowrap;
}

.home-yearly-chart-table thead .yearly-date-column {
    width: 65px;
}


/* ---------------------------------------------------------
   TABLE BODY
   --------------------------------------------------------- */

.home-yearly-chart-table tbody td {
    height: 38px;
    padding: 0 5px;
    color: #26354a;
    background: #ffffff;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
}

.home-yearly-chart-table tbody tr:nth-child(even) td {
    background: #fafbfc;
}

.home-yearly-chart-table tbody tr:hover td {
    background: #faf7ef;
}

.home-yearly-chart-table tbody .yearly-date-column {
    color: #172a46;
    font-weight: 800;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .home-yearly-chart {
        padding: 38px 0 48px;
    }

    .home-yearly-chart .section-heading {
        padding: 0 12px;
        margin-bottom: 21px;
    }

    .home-yearly-chart .section-heading h2 {
        font-size: 26px;
    }

    .home-yearly-chart .section-heading p {
        font-size: 12px;
    }

    /* FILTER STRIP */

    .home-yearly-chart .chart-filter {
        width: 100%;
        padding: 18px 12px;
        margin-bottom: 24px;
        gap: 10px;
    }

    .home-yearly-chart .chart-filter-group {
        width: 162px;
        max-width: 162px;
    }

    .home-yearly-chart .chart-filter-group label {
        margin-bottom: 5px;
        font-size: 10px;
    }

    .home-yearly-chart .chart-filter-group select {
        height: 40px;
        padding: 0 9px;
        font-size: 12px;
    }

    /* TABLE */

    .home-yearly-chart .yearly-chart-table-wrap {
        width: 100%;
        overflow-x: auto;
    }

    .home-yearly-chart-table {
        min-width: 680px;
    }

    .home-yearly-chart-table thead th {
        height: 46px;
        padding: 0 4px;
        font-size: 9px;
    }

    .home-yearly-chart-table tbody td {
        height: 37px;
        padding: 0 4px;
        font-size: 12px;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 400px) {

    .home-yearly-chart {
        padding-top: 34px;
        padding-bottom: 44px;
    }

    .home-yearly-chart .section-heading {
        padding: 0 10px;
    }

    .home-yearly-chart .section-heading h2 {
        font-size: 24px;
    }

    .home-yearly-chart .section-heading p {
        font-size: 11px;
    }

    .home-yearly-chart .chart-filter {
        padding: 16px 10px;
        gap: 8px;
    }

    .home-yearly-chart .chart-filter-group {
        width: 150px;
        max-width: 150px;
    }

    .home-yearly-chart .chart-filter-group select {
        height: 38px;
        font-size: 11px;
    }

    .home-yearly-chart-table {
        min-width: 650px;
    }

    .home-yearly-chart-table thead th {
        font-size: 8px;
    }

    .home-yearly-chart-table tbody td {
        font-size: 11px;
    }
}
/* =========================================================
   HOME YEARLY CHART - MOBILE FILTER FIX
   SAME AS MONTHLY CHART
   ========================================================= */

@media (max-width: 768px) {

    .home-yearly-chart .chart-filter {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 0 24px !important;
        padding: 18px 12px !important;

        display: grid !important;
        grid-template-columns: 1fr 1fr !important;

        align-items: end !important;
        justify-content: center !important;
        gap: 10px !important;

        box-sizing: border-box !important;
    }

    .home-yearly-chart .chart-filter-group {
        width: 100% !important;
        max-width: none !important;
        min-width: 0 !important;

        display: flex !important;
        flex-direction: column !important;

        margin: 0 !important;
        padding: 0 !important;
        box-sizing: border-box !important;
    }

    .home-yearly-chart .chart-filter-group label {
        display: block !important;
        width: 100% !important;
        margin: 0 0 5px !important;

        font-size: 10px !important;
        line-height: 1.2 !important;
    }

    .home-yearly-chart .chart-filter-group select {
        display: block !important;
        width: 100% !important;
        height: 40px !important;

        margin: 0 !important;
        padding: 0 9px !important;

        font-size: 12px !important;
        box-sizing: border-box !important;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 400px) {

    .home-yearly-chart .chart-filter {
        grid-template-columns: 1fr 1fr !important;
        gap: 8px !important;
        padding: 16px 10px !important;
    }

    .home-yearly-chart .chart-filter-group {
        width: 100% !important;
        max-width: none !important;
    }

    .home-yearly-chart .chart-filter-group select {
        height: 38px !important;
        font-size: 11px !important;
        padding: 0 8px !important;
    }
}

/* =========================================================
   HOME INFORMATION
   ========================================================= */

.home-information-section {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 58px 0 65px;
    background: #f7f8fa;
    border-top: 1px solid #e3e6ea;
    box-sizing: border-box;
}

.home-information-heading {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto 38px;
    padding: 0 25px;
    text-align: center;
    box-sizing: border-box;
}

.home-information-eyebrow {
    display: block;
    margin-bottom: 10px;
    color: #667184;
    font-family: Arial, sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2.5px;
}

.home-information-heading h2 {
    margin: 0;
    color: #172a46;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.25;
}

.home-information-heading p {
    margin: 10px 0 0;
    color: #667184;
    font-family: Arial, sans-serif;
    font-size: 13px;
    line-height: 1.5;
}


/* =========================================================
   TOP INFORMATION GRID
   ========================================================= */

.home-information-grid {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 38px;
    padding: 0 25px;
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 28px;
    box-sizing: border-box;
}


/* ---------------------------------------------------------
   INTRO
   --------------------------------------------------------- */

.home-information-intro {
    padding: 30px;
    background: #ffffff;
    border: 1px solid #e1e5e9;
    border-top: 3px solid #c49a45;
    box-sizing: border-box;
}

.home-information-intro h3 {
    margin: 0 0 14px;
    color: #172a46;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
    line-height: 1.3;
}

.home-information-intro p {
    margin: 0 0 14px;
    color: #4b5565;
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 1.8;
}

.home-information-intro p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   QUICK TOPICS
   ========================================================= */

.home-information-topics {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #e1e5e9;
    box-sizing: border-box;
}

.home-information-topic {
    position: relative;
    flex: 1;
    padding: 19px 20px 17px 55px;
    border-bottom: 1px solid #e8ebee;
    box-sizing: border-box;
}

.home-information-topic:last-child {
    border-bottom: 0;
}

.home-information-topic > span {
    position: absolute;
    left: 20px;
    top: 21px;
    color: #c49a45;
    font-family: Arial, sans-serif;
    font-size: 11px;
    font-weight: 800;
}

.home-information-topic strong {
    display: block;
    margin-bottom: 5px;
    color: #172a46;
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: 800;
}

.home-information-topic p {
    margin: 0;
    color: #667184;
    font-family: Arial, sans-serif;
    font-size: 12px;
    line-height: 1.5;
}


/* =========================================================
   DETAILS
   ========================================================= */

.home-information-details {
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 25px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    box-sizing: border-box;
}

.home-information-details article {
    padding: 26px 28px;
    background: #ffffff;
    border: 1px solid #e1e5e9;
    box-sizing: border-box;
}

.home-information-details h3 {
    margin: 0 0 11px;
    color: #172a46;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 21px;
    font-weight: 700;
    line-height: 1.3;
}

.home-information-details p {
    margin: 0;
    color: #4b5565;
    font-family: Arial, sans-serif;
    font-size: 13px;
    line-height: 1.8;
}

.home-information-details strong {
    color: #172a46;
    font-weight: 700;
}

.home-information-details a {
    color: #172a46;
    font-weight: 700;
    text-decoration: none;
}

.home-information-details a:hover {
    color: #c49a45;
}

.home-information-hindi {
    grid-column: 1 / -1;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .home-information-section {
        padding: 42px 0 50px;
    }

    .home-information-heading {
        margin-bottom: 28px;
        padding: 0 12px;
    }

    .home-information-heading h2 {
        font-size: 26px;
    }

    .home-information-heading p {
        font-size: 12px;
    }

    .home-information-grid {
        margin-bottom: 24px;
        padding: 0 12px;
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .home-information-intro {
        padding: 23px 20px;
    }

    .home-information-intro h3 {
        font-size: 21px;
    }

    .home-information-intro p {
        font-size: 13px;
        line-height: 1.75;
    }

    .home-information-topic {
        padding: 17px 18px 16px 52px;
    }

    .home-information-details {
        padding: 0 12px;
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .home-information-details article {
        padding: 21px 20px;
    }

    .home-information-details h3 {
        font-size: 19px;
    }

    .home-information-details p {
        font-size: 13px;
        line-height: 1.75;
    }

    .home-information-hindi {
        grid-column: auto;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 400px) {

    .home-information-heading {
        padding: 0 10px;
    }

    .home-information-heading h2 {
        font-size: 24px;
    }

    .home-information-grid,
    .home-information-details {
        padding-left: 10px;
        padding-right: 10px;
    }

    .home-information-intro {
        padding: 20px 17px;
    }

    .home-information-intro h3 {
        font-size: 20px;
    }

    .home-information-intro p,
    .home-information-details p {
        font-size: 12px;
    }

    .home-information-details article {
        padding: 19px 17px;
    }
}

/* =========================================================
   HOME INFORMATION - PREMIUM BOX / LAYOUT FIX
   ========================================================= */

.home-information-section {
    background: #f7f8fa;
    padding: 58px 0 68px;
}


/* =========================================================
   TOP INTRO + QUICK TOPICS
   ========================================================= */

.home-information-grid {
    max-width: 1280px;
    padding: 0 32px;
    gap: 24px;
}

.home-information-intro,
.home-information-topics,
.home-information-details article {
    border: 1px solid #e1e5e9;
    border-radius: 8px;
    box-shadow: 0 4px 18px rgba(23, 42, 70, 0.045);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}

.home-information-intro {
    position: relative;
    overflow: hidden;
    padding: 32px;
    background: #ffffff;
    border-top: 3px solid #667184;
}

.home-information-intro::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 90px;
    height: 90px;
    background: rgba(196, 154, 69, 0.045);
    border-radius: 0 0 0 90px;
    pointer-events: none;
}

.home-information-intro h3 {
    position: relative;
    z-index: 1;
    margin-bottom: 16px;
}

.home-information-intro p {
    position: relative;
    z-index: 1;
}


/* ---------------------------------------------------------
   QUICK TOPICS
   --------------------------------------------------------- */

.home-information-topics {
    overflow: hidden;
    background: #ffffff;
}

.home-information-topic {
    min-height: 86px;
    padding: 20px 20px 20px 58px;
    background: #ffffff;
    transition: background 0.2s ease;
}

.home-information-topic:hover {
    background: #faf7ef;
}

.home-information-topic > span {
    left: 21px;
    top: 22px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color:#667184;
    background: #faf7ef;
    border: 1px solid #eadbb9;
    border-radius: 50%;
    font-size: 9px;
}


/* =========================================================
   DETAIL CARDS
   ========================================================= */

.home-information-details {
    max-width: 1280px;
    padding: 0 32px;
    gap: 24px;
}


/* Card */

.home-information-details article {
    position: relative;
    overflow: hidden;
    padding: 28px 30px;
    background: #ffffff;
}

.home-information-details article::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #667184;
}

.home-information-details article:hover {
    border-color: #d6dbe1;
    box-shadow: 0 7px 24px rgba(23, 42, 70, 0.075);
    transform: translateY(-2px);
}

.home-information-details h3 {
    margin-bottom: 12px;
}

.home-information-details p {
    color: #536174;
}


/* =========================================================
   FIX BOTTOM LAYOUT
   ========================================================= */

/*
   5th article = Fast Result
   Make it full width instead of leaving an empty right column.
*/

.home-information-details article:nth-child(5) {
    grid-column: 1 / -1;
}


/*
   Hindi information also full width.
*/

.home-information-details article:nth-child(6) {
    grid-column: 1 / -1;
}


/* Fast Result horizontal feel */

.home-information-details article:nth-child(5) {
    padding-right: 45px;
}


/* Hindi panel */

.home-information-details .home-information-hindi {
    background: #172a46;
    border-color: #172a46;
    border-left: 4px solid #667184;
}

.home-information-details .home-information-hindi::before {
    display: none;
}

.home-information-details .home-information-hindi p {
    color: #e9edf2;
}

.home-information-details .home-information-hindi strong {
    color: #ffffff;
}


/* =========================================================
   DESKTOP LARGE
   ========================================================= */

@media (min-width: 1100px) {

    .home-information-grid {
        grid-template-columns: 1.3fr 1fr;
    }

    .home-information-details {
        grid-template-columns: 1fr 1fr;
    }
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .home-information-grid,
    .home-information-details {
        padding-left: 20px;
        padding-right: 20px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .home-information-section {
        padding: 42px 0 50px;
    }

    .home-information-grid {
        padding: 0 12px;
        gap: 16px;
    }

    .home-information-details {
        padding: 0 12px;
        gap: 16px;
    }

    .home-information-intro {
        padding: 24px 21px;
    }

    .home-information-details article {
        padding: 23px 21px;
    }

    /*
       On mobile every card becomes one column.
    */

    .home-information-details article:nth-child(5),
    .home-information-details article:nth-child(6) {
        grid-column: auto;
    }

    .home-information-details article:hover {
        transform: none;
    }

    .home-information-topic {
        min-height: auto;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 400px) {

    .home-information-grid,
    .home-information-details {
        padding-left: 10px;
        padding-right: 10px;
    }

    .home-information-intro {
        padding: 21px 18px;
    }

    .home-information-details article {
        padding: 21px 18px;
    }

    .home-information-details h3 {
        font-size: 18px;
    }
}

/* =========================================================
   HOME FAQ SECTION
   ========================================================= */

.home-faq-section {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 58px 0 65px;
    background: #ffffff;
    border-top: 1px solid #e3e6ea;
    box-sizing: border-box;
}


/* =========================================================
   HEADING
   ========================================================= */

.home-faq-heading {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 34px;
    padding: 0 20px;
    text-align: center;
    box-sizing: border-box;
}

.home-faq-eyebrow {
    display: block;
    margin-bottom: 10px;
    color: #667184;
    font-family: Arial, sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2.5px;
    line-height: 1;
}

.home-faq-heading h2 {
    margin: 0;
    color: #172a46;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.25;
}

.home-faq-heading p {
    margin: 10px 0 0;
    color: #667184;
    font-family: Arial, sans-serif;
    font-size: 13px;
    line-height: 1.5;
}


/* =========================================================
   FAQ LIST
   ========================================================= */

.home-faq-list {
    width: 100%;
    max-width: 1050px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}


/* =========================================================
   FAQ ITEM
   ========================================================= */

.home-faq-item {
    width: 100%;
    margin: 0 0 12px;
    background: #ffffff;
    border: 1px solid #dfe4e9;
    border-radius: 7px;
    box-shadow: 0 3px 14px rgba(23, 42, 70, 0.04);
    overflow: hidden;
    box-sizing: border-box;
}

.home-faq-item:last-child {
    margin-bottom: 0;
}


/* =========================================================
   QUESTION
   ========================================================= */

.home-faq-item summary {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;

    min-height: 62px;
    margin: 0;
    padding: 16px 20px;

    color: #172a46;
    background: #ffffff;

    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.45;

    cursor: pointer;
    list-style: none;
    box-sizing: border-box;
}

.home-faq-item summary::-webkit-details-marker {
    display: none;
}

.home-faq-item summary::marker {
    display: none;
}

.home-faq-item summary span {
    padding-right: 15px;
}


/* =========================================================
   PLUS ICON
   ========================================================= */

.home-faq-item summary b {
    flex: 0 0 auto;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 26px;
    height: 26px;

    color: #667184;
    background: #faf7ef;
    border: 1px solid #eadbb9;
    border-radius: 50%;

    font-family: Arial, sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1;

    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.home-faq-item[open] summary b {
    transform: rotate(45deg);
    background: #f7f0df;
}


/* =========================================================
   ANSWER
   ========================================================= */

.home-faq-answer {
    margin: 0;
    padding: 0 20px 19px;
    border-top: 1px solid #eef0f2;
}

.home-faq-answer p {
    margin: 15px 0 0;
    color: #536174;
    font-family: Arial, sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.8;
}

.home-faq-answer strong {
    color: #172a46;
    font-weight: 700;
}

.home-faq-answer a {
    color: #172a46;
    font-weight: 700;
    text-decoration: none;
}

.home-faq-answer a:hover {
    color: #667184;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .home-faq-section {
        padding: 42px 0 50px;
    }

    .home-faq-heading {
        margin-bottom: 25px;
        padding: 0 12px;
    }

    .home-faq-heading h2 {
        font-size: 26px;
    }

    .home-faq-heading p {
        font-size: 12px;
    }

    .home-faq-list {
        padding: 0 12px;
    }

    .home-faq-item {
        margin-bottom: 10px;
        border-radius: 6px;
    }

    .home-faq-item summary {
        min-height: 58px;
        padding: 14px 14px;
        font-size: 13px;
    }

    .home-faq-item summary b {
        width: 24px;
        height: 24px;
        font-size: 16px;
    }

    .home-faq-answer {
        padding: 0 14px 16px;
    }

    .home-faq-answer p {
        margin-top: 13px;
        font-size: 12px;
        line-height: 1.7;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 400px) {

    .home-faq-heading {
        padding: 0 10px;
    }

    .home-faq-heading h2 {
        font-size: 24px;
    }

    .home-faq-heading p {
        font-size: 11px;
    }

    .home-faq-list {
        padding: 0 10px;
    }

    .home-faq-item summary {
        padding: 13px 12px;
        font-size: 12px;
    }

    .home-faq-item summary b {
        width: 22px;
        height: 22px;
        font-size: 15px;
    }

    .home-faq-answer {
        padding-left: 12px;
        padding-right: 12px;
    }

    .home-faq-answer p {
        font-size: 11px;
    }
}
/* =========================================================
   FLOATING ACTION BUTTONS
   ========================================================= */

.floating-actions {
    position: fixed;
    right: 18px;
    bottom: 18px;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;

    z-index: 9999;
}

.floating-action {
    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;
    margin: 0;

    border: none;
    border-radius: 50%;

    cursor: pointer;

    font-family: Arial, sans-serif;
    font-size: 25px;
    font-weight: 800;
    line-height: 1;

    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.refresh-action {
    background: #2563eb;
    color: #ffffff;
}

.top-action {
    background: #172033;
    color: #ffffff;
}

.floating-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
}

.floating-action:active {
    transform: scale(0.94);
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .floating-actions {
        right: 12px;
        bottom: 14px;
        gap: 8px;
    }

    .floating-action {
        width: 46px;
        height: 46px;
        font-size: 23px;
    }
}