.monthly-hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding: 120px 0 80px;
    background: url("/assets/images/star.png") center/cover no-repeat;
    overflow: hidden;
}

.monthly-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(3, 7, 30, 0.22), rgba(3, 7, 30, 1));
}

.monthly-hero .container {
    position: relative;
    z-index: 1;
}

.hero-logo i {
    font-size: 45px;

    color: #ffd86b;
}

.hero-title {
    font-size: 52px;

    font-weight: 700;
}

.hero-text {
    font-size: 18px;

    opacity: 0.85;

    max-width: 700px;

    margin: auto;
}

/* SEARCH */

.search-card {
    background: rgba(255, 255, 255, 0.15);

    border: 1px solid rgba(255, 255, 255, 0.25);

    backdrop-filter: blur(20px);

    -webkit-backdrop-filter: blur(20px);

    padding: 35px;

    border-radius: 30px;
}

.search-card label {
    color: white;

    font-weight: 600;

    margin-bottom: 8px;
}

.search-card .form-select {
    height: 58px;

    border-radius: 8px;

    border: none;
}

.search-card .btn {
    background-color: #198754;
    height: 58px;
    font-weight: 600;
    border-radius: 16px;
    box-shadow: none;
    border: none;
    transition: none;
}

.search-card .btn:hover,
.search-card .btn:focus,
.search-card .btn:active {
    box-shadow: none;
    transform: translate(0px, 1px);
}

/* RESULT */

.monthly-result {
    padding: 70px 0;

    background: #f5f7fb;
}

.result-wrapper {
    background: white;

    border-radius: 35px;

    overflow: hidden;

    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.result-header {
    position: relative;

    padding: 45px;

    color: white;

    background: url("/assets/images/star.png") center/cover no-repeat;

    display: flex;

    justify-content: space-between;

    align-items: center;
}

.result-header::before {
    content: "";

    position: absolute;

    inset: 0;

    background: rgba(3, 7, 30, 0.6);
}

.result-header > div {
    position: relative;

    z-index: 1;
}

.result-header span {
    opacity: 0.75;
}

.result-header h2 {
    font-size: 36px;

    font-weight: 700;

    margin: 10px 0;
}

.zone-badge {
    display: inline-block;

    background: rgba(255, 255, 255, 0.15);

    padding: 8px 18px;

    border-radius: 50px;
}

.result-body {
    padding: 40px;
}

/* TABLE */

.table {
    margin: 0;
}

.table thead th {
    background: #198754;

    color: white;

    white-space: nowrap;
}

.table tbody td {
    white-space: nowrap;
}

.table tbody tr {
    transition: 0.2s;
}

.table tbody tr:hover {
    background: #f1f8f5;
}

.today-row {
    background: #fff3cd !important;

    font-weight: 700;
}

/* MOBILE */

@media (max-width: 992px) {
    .monthly-hero {
        padding-top: 150px;
    }

    .hero-title {
        font-size: 42px;
    }

    .result-header {
        flex-direction: column;

        text-align: center;

        gap: 20px;
    }
}

@media (max-width: 576px) {
    .monthly-hero {
        min-height: 600px;

        padding-top: 110px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-text {
        font-size: 15px;
    }

    .search-card {
        padding: 22px;

        border-radius: 22px;
    }

    .result-header {
        padding: 30px 20px;
    }

    .result-header h2 {
        font-size: 28px;
    }

    .result-body {
        padding: 20px;
    }

    .table {
        font-size: 14px;
    }
}
