@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@700;800&display=swap');

:root {
    --primary-blue: #4a90e2;
    --dark-bg: #2c3e50;
    --card-bg: #dcdcdc;
    --yellow: #f4e07a;
    --text-white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    overflow-x: hidden;
}

body {
    width: 100%;
    min-width: unset;
    margin: 0;
    padding: 0;
    position: relative;
    background-color: #2c3e50;
    color: white;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes modalPop {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

select:focus {
    outline: none;
    box-shadow: none;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 5%;
    background: white;
    width: 100%;
    min-height: 60px;
    box-sizing: border-box;
    overflow: hidden;
    flex-wrap: nowrap;
}

.navbar-brand-container {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.logo-circle {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 2px solid var(--dark-bg);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-divider {
    width: 1px;
    height: 40px;
    background: rgba(0, 0, 0, 0.15);
}

.brand-title {
    color: var(--dark-bg);
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 2px;
    margin: 0;
    font-family: 'DM Sans', sans-serif;
}

.navbar nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    height: 100%;
}

.navbar nav a {
    text-decoration: none;
    color: #333;
    margin: 0 12px;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
}

.navbar nav a.active {
    background: #e0e0e0;
    padding: 6px 15px;
    border-radius: 20px;
}

.auth-buttons {
    display: flex;
    gap: 10px;
    margin-left: 20px;
}

.btn-signup,
.btn-login {
    padding: 8px 18px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
}

.btn-signup {
    background: #f0f0f0;
    border: 1px solid #ccc;
    color: #333;
}

.btn-login {
    background: #2c3e50;
    color: white;
    border: none;
}

.navbar-user-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 20px;
    flex-shrink: 0;
}

.navbar-user-divider {
    width: 1px;
    height: 30px;
    background: rgba(0, 0, 0, 0.15);
}

.navbar-user-text {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.navbar-user-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: #2c3e50;
    line-height: 1.3;
}

.navbar-user-email {
    font-size: 0.75rem;
    color: #888;
    line-height: 1.3;
}

.navbar-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #2c3e50;
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    display: none;
    cursor: pointer;
}

.modal-box {
    background: white;
    padding: 40px;
    border-radius: 20px;
    width: 400px;
    text-align: center;
    cursor: default;
    position: relative;
    margin: 0;
    animation: modalPop 0.3s ease-out;
    box-sizing: border-box;
}

.modal-box button {
    cursor: pointer;
}

.modal-box h2 {
    font-weight: bold;
    margin-bottom: 10px;
    color: black;
    font-size: 22px !important;
}

.modal-box p {
    color: black;
    text-align: center;
    margin: 0 auto 10px;
    font-size: 1rem;
    font-weight: bold;
    display: block;
    width: 100%;
    line-height: 1.5;
}

.modal-box p span {
    font-weight: normal;
    display: inline-block;
    padding-left: 5px;
}

.modal-btn-row {
    display: flex;
    gap: 10px;
    margin-top: 30px !important;

}

.modal-btn-row button {
    flex: 1;
    padding: 14px;
    border-radius: 12px;
    font-weight: bold;
    border: none;
    cursor: pointer;
}

.modal-small {
    width: 380px !important;
    max-width: 380px !important;
    padding: 35px 30px !important;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.modal-text-center {
    text-align: center;
    width: 100%;
    display: block;
}

.error-circle {
    width: 60px;
    height: 60px;
    border: 2px solid #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    font-weight: bold;
    margin: 0 auto 20px;
}

.success-circle {
    width: 70px;
    height: 70px;
    border: 3px solid black;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 40px;
    color: black;
    margin: 0 auto 20px;
}

.success-msg-bold {
    display: block;
    font-size: 1.1rem;
    font-weight: bold;
    color: #000;
    text-align: center;
    max-width: 250px;
    line-height: 1.4;
    margin-bottom: 25px;
}

.error-msg-text {
    font-size: 17px;
    font-weight: 600;
    color: #000;
    margin-top: 20px;
    margin-bottom: 45px;
    line-height: 1.5;
    max-width: 300px;
}

.confirm-row {
    display: flex !important;
    justify-content: space-between !important;
    text-align: left !important;
    font-weight: normal !important;
    width: 100% !important;
    margin-bottom: 16px !important;
}

.confirm-row span {
    color: #555;
    font-weight: normal;
    text-align: right;
    max-width: 55%;
}

.btn-approve {
    flex: 1;
    background: #2ecc71;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 12px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.2s;
}

.btn-reject {
    flex: 1;
    background: #e74c3c;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 12px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.2s;
}

.btn-cancel {
    flex: 1;
    background: #dcdcdc;
    border: none;
    padding: 12px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    color: black;
}

.btn-cancel-modal {
    width: 100%;
    background-color: #dcdcdc;
    color: #000;
}

.btn-cancel-blue {
    background-color: #4483f6;
    color: white;
    border: none;
    padding: 12px 0;
    border-radius: 14px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease;
    display: inline-block;
    width: 100% !important;
    margin-top: 20px !important;
}

.btn-cancel-blue:hover {
    background-color: #2b6de0;
}

.btn-cancel-full {
    width: 100%;
    margin-top: 10px;
    background: #dcdcdc;
    border: none;
    padding: 12px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    color: black;
    font-size: 1rem;
}

.btn-unavailable {
    flex: 1;
    background: #ff4d4d;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
}

.btn-available {
    flex: 1;
    background: #2ecc71;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
}

.home-btn {
    background-color: #4a90e2 !important;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 15px;
    width: 100%;
}

.container {
    max-width: 850px;
    margin: 0 auto;
    padding: 0 20px;
}

.auth-overlay {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.auth-overlay-wrapper {
    width: 90%;
    max-width: 400px;
}

.auth-overlay-content {
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.auth-overlay-header {
    text-align: center;
    margin-bottom: 25px;
}

.auth-overlay-title {
    font-size: 32px;
    font-weight: 800;
    color: #000;
    margin-bottom: 5px;
}

.auth-overlay-subtitle {
    font-size: 15px;
    color: #333;
    line-height: 1.4;
}

.auth-overlay-input-group {
    background-color: #ededed;
    border-radius: 10px;
    padding: 10px 15px;
    margin-bottom: 12px;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.auth-overlay-input-group label {
    font-size: 12px;
    font-weight: bold;
    color: #666;
    margin-bottom: 2px;
}

.auth-overlay-input-group input {
    width: 100%;
    border: none;
    background: transparent;
    font-size: 16px;
    color: #000;
    outline: none;
    padding: 0;
}

.auth-overlay-submit-btn {
    width: 100%;
    padding: 14px;
    background-color: #2c3e50;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
}

.auth-overlay-forgot-link {
    font-size: 13px;
    color: #B88739;
    text-decoration: underline;
    font-weight: 600;
}

.auth-overlay-link {
    text-align: center;
    font-size: 14px;
    margin-top: 15px;
    color: #2c3e50;
    font-weight: 500;
    background-color: transparent;
}

.auth-overlay-link a {
    color: #000;
    font-weight: bold;
    text-decoration: underline;
    cursor: pointer;
}

.auth-overlay-close-btn {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 24px;
    cursor: pointer;
    color: #aaa;
}

.hero-section {
    width: 100%;
    min-height: 500px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('ResidensiSeriSerindit.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-section-overlay {
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
}

.hero-section-overlay h1 {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.hero-section-subtitle {
    font-size: 1.8rem;
    margin-bottom: 40px;
}

.search-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 0 auto 30px;
    align-items: center;
    width: 90%;
    max-width: 650px;
}

.search-input-box {
    background: #e0e0e0;
    padding: 10px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    height: 45px;
    box-sizing: border-box;
    position: relative;
}

.search-input-box i {
    color: #000000;
    font-size: 1.1rem;
}

.search-input-box input {
    border: none;
    background: transparent;
    outline: none;
    width: 100%;
    flex: 1;
    min-width: 0;
    pointer-events: all;
    position: relative;
    z-index: 999;
}

.search-btn {
    background: #2c3e50;
    color: white;
    border: none;
    padding: 5px 15px;
    border-radius: 5px;
    cursor: pointer;
    pointer-events: all;
    position: relative;
    z-index: 999;
}

.search-btn:hover {
    background: #1a252f;
    transition: 0.2s;
}

.dropdown {
    position: relative;
    display: inline-block;
    flex-shrink: 0;
    width: 160px;
}

.dropdown-content a:hover {
    background-color: var(--yellow, #f39c12) !important;
    color: #333 !important;
}

.filter-dropdown-trigger {
    background: #e0e0e0;
    color: #333;
    padding: 0 15px;
    border-radius: 10px;
    cursor: pointer;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 45px;
    font-size: 0.9rem;
    box-sizing: border-box;
}

.stats-panel {
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: space-around;
    padding: 30px 20px;
    border-radius: 20px;
    width: 90%;
    max-width: 715px;
    margin: 0 auto 35px;
}

.stats-panel-stat {
    display: flex;
    flex-direction: column;
}

.stats-panel-num {
    font-size: 1.9rem;
    font-weight: bold;
    color: #f4e07a;
    line-height: 1;
    margin-bottom: 5px;
}

.parking-map-btn {
    display: block;
    background: #448aff;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
    box-sizing: border-box;
    transition: all 0.2s ease;
}

.parking-map-btn:hover {
    background: #1e74ff;
    color: #fff;
    border: none;
}

.btn-awaiting {
    display: block;
    padding: 15px;
    border-radius: 10px;

    background: #f39c12;
    border: none;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.btn-awaiting:hover {
    background-color: #d35400;
    color: #fff;
    transform: translateY(-2px);
}

.badge-pending {
    background: #fff3cd;
    color: #856404;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 6px;
}

.requestors-count {
    font-size: 12px;
    color: #888;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 4px;
}

.btn-join-queue {
    background: #f4e07a;
    padding: 10px 25px;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    font-size: 15px;
}

.btn-join-queue:hover {
    background: #e6cf5e;
    transition: 0.2s;
}

.parking-listings-section {
    padding: 40px 5%;
}

.parking-listing-card {
    background: #dcdcdc;
    color: #333;
    padding: 20px 40px;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.parking-listing-card-info p {
    margin-bottom: 5px;
    font-weight: 500;
    color: #333;
}

.parking-listing-details-btn {
    background: #f4e07a;
    padding: 10px 25px;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    font-size: 15px;
}

.parking-listing-details-btn:hover {
    background: #e6cf5e;
    transition: 0.2s;
}

.parking-listings-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    text-align: left;
}

#parking-list {
    width: 100%;
    max-width: 900px;
}

.load-more-btn {
    display: inline-block;
    padding: 12px 40px;
    margin-top: 35px;
    margin-bottom: 0px;
    background: transparent;
    border: 2px solid #fff;
    border-radius: 15px;
    color: #fff;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    width: 650px;
    text-align: center;
}


.load-more-btn:hover {
    background-color: #ffffff;
    color: #1e2d3b;
}

.reservation-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: flex-start;
    overflow-y: auto;
    padding: 30px 0;
}

.reservation-card {
    background: #f4f4f4;
    color: #333;
    width: 95%;
    max-width: 600px;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    margin: 0 auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.reservation-card::-webkit-scrollbar {
    display: none;
}

.reservation-close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    color: #000;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
    z-index: 100;
}

.reservation-close-btn:hover {
    opacity: 0.6;
    transform: scale(1.1);
}

.reservation-main-title {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.reservation-error-msg {
    display: none;
    color: #e74c3c;
    font-size: 13px;
    font-weight: 600;
    background: #fff5f5;
    border-left: 4px solid #e74c3c;
    padding: 10px 14px;
    border-radius: 8px;
    margin-bottom: 14px;
}

.parking-info-section {
    background: #2c3e50;
    color: white;
    padding: 20px;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.parking-info-section-title {
    color: #e74c3c;
    font-weight: bold;
    margin-bottom: 10px;
}

.parking-info-content p {
    margin: 5px 0;
    font-size: 0.9rem;
}

.whatsapp-contact-btn {
    background: #25d366;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.8rem;
    text-decoration: none;
    gap: 8px;
    justify-content: center;
}

.whatsapp-contact-btn img {
    width: 25px;
    margin-bottom: 5px;
}

.rental-period-section {
    background: white;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
}

.rental-period-title {
    color: #e74c3c;
    font-weight: bold;
    margin-bottom: 10px;
}

.rental-period-label {
    font-size: 13px;
    color: #666;
    margin-bottom: 10px;
}

.rental-period-option {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    border: 1px solid #eee;
    border-radius: 12px;
    margin-bottom: 8px;
    cursor: pointer;
    background: white;
    transition: background-color 0.3s;
}

.rental-period-option:has(input[type="radio"]:checked) {
    background-color: #f4e07a;
}

.rental-period-option input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #555;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    flex-shrink: 0;
    position: relative;
}

.rental-period-option input[type="radio"]:checked::after {
    content: "";
    width: 10px;
    height: 10px;
    background-color: #2196F3;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.rental-period-duration-text {
    flex: 1;
    margin-left: 10px;
    font-weight: bold;
}

.rental-period-price-text {
    color: #666;
    font-weight: normal;
    margin-left: auto;
}

.car-plate-section {
    background: white;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
}

.car-plate-title {
    color: #e74c3c;
    font-weight: bold;
    margin-bottom: 10px;
}

.car-plate-label {
    font-size: 13px;
    color: #666;
    margin-bottom: 15px;
}

.car-plate-input-group {
    background-color: #ededed;
    border-radius: 10px;
    padding: 10px 15px;
    display: flex;
    flex-direction: column;
}

.car-plate-input-group input {
    width: 100%;
    border: none;
    background: transparent;
    font-size: 16px;
    color: #000;
    outline: none;
    padding: 0;
}

.payment-method-section {
    background: white;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
}

.payment-method-title {
    color: #e74c3c;
    font-weight: bold;
    margin-bottom: 10px;
}

.payment-method-label {
    font-size: 13px;
    color: #666;
    margin-bottom: 10px;
}

.payment-method-option {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    border-radius: 12px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    background-color: #f5f5f5;
    border: 1px solid transparent;
}

.payment-method-option:has(input[type="radio"]:checked),
.payment-method-option.active {
    background-color: #f9e27d !important;
    border: 1px solid #e0c54a;
}

.payment-method-option.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background-color: #eee;
}

.payment-method-radio-circle {
    width: 18px;
    height: 18px;
    border: 2px solid #555;
    border-radius: 50%;
    margin-right: 12px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-method-option:has(input[type="radio"]:checked) .payment-method-radio-circle::after,
.payment-method-option.active .payment-method-radio-circle::after {
    content: "";
    width: 10px;
    height: 10px;
    background-color: #2196F3;
    border-radius: 50%;
}

.payment-method-text {
    font-size: 14px;
    font-weight: bold;
    flex-grow: 1;
}

.payment-method-disabled-tag {
    font-size: 11px;
    color: #e74c3c;
    font-weight: bold;
    margin-left: 10px;
}

.reservation-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    background-color: #dcdcdc;
    padding: 15px 25px;
    margin: 20px -25px -25px;
    width: calc(100% + 50px);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    box-sizing: border-box;
}

.reservation-footer-total {
    font-weight: bold;
    font-size: 1.2rem;
    color: #2c3e50;
}

.reservation-footer-total-amount {
    font-size: 1.2rem;
    font-weight: bold;
    color: #2c3e50;
}

.reservation-request-btn {
    background: #2c3e50;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
}

.success-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    display: none;
    justify-content: center;
    align-items: center;
}

.success-modal-box {
    text-align: center;
    padding: 40px 30px;
    max-width: 350px;
    border-radius: 16px;
    background: white;
}

.success-modal-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 3px solid #222;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.success-modal-msg {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #222;
}

.success-modal-home-btn {
    background: #4285f4;
    color: white;
    border: none;
    padding: 10px 30px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 14px;
}

.auth-overlay {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.auth-overlay-wrapper {
    width: 90%;
    max-width: 400px;
}

.auth-overlay-content {
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.auth-overlay-header {
    text-align: center;
    margin-bottom: 25px;
}

.auth-overlay-title {
    font-size: 32px;
    font-weight: 800;
    color: #000;
    margin-bottom: 5px;
}

.auth-overlay-subtitle {
    font-size: 15px;
    color: #333;
    line-height: 1.4;
}

.auth-overlay-input-group {
    background-color: #ededed;
    border-radius: 10px;
    padding: 10px 15px;
    margin-bottom: 12px;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.auth-overlay-input-group label {
    font-size: 12px;
    font-weight: bold;
    color: #666;
    margin-bottom: 2px;
}

.auth-overlay-input-group input {
    width: 100%;
    border: none;
    background: transparent;
    font-size: 16px;
    color: #000;
    outline: none;
    padding: 0;
}

.auth-overlay-submit-btn {
    width: 100%;
    padding: 14px;
    background-color: #2c3e50;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
}

.auth-overlay-forgot {
    text-align: right;
    margin-bottom: 20px;
}

.auth-overlay-forgot-link {
    font-size: 13px;
    color: #B88739;
    text-decoration: underline;
    font-weight: 600;
}

.auth-overlay-link {
    text-align: center;
    font-size: 14px;
    margin-top: 15px;
    color: #2c3e50;
    font-weight: 500;
    background-color: transparent;
}

.auth-overlay-link a {
    color: #000000;
    font-weight: bold;
    text-decoration: underline;
    cursor: pointer;
}

.auth-overlay-close-btn {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 24px;
    cursor: pointer;
    color: #aaa;
}

@media (max-width: 768px) {
    .hero-section-overlay h1 {
        font-size: 2.2rem;
    }

    .hero-section-subtitle {
        font-size: 1.2rem;
    }

    .search-input-box {
        min-width: 100%;
        max-width: 100%;
    }

    .parking-map-btn {
        width: 100%;
        max-width: 300px;
    }

    .stats-panel {
        gap: 20px;
    }

    .parking-listing-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 15px;
    }

    .reservation-card {
        width: 92%;
        padding: 15px;
        margin: 10px auto;
    }

    .reservation-footer {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .reservation-request-btn {
        width: 100%;
    }
}

.success-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    display: none;
    justify-content: center;
    align-items: center;
}

.success-modal-box {
    text-align: center;
    padding: 40px 30px;
    max-width: 350px;
    border-radius: 16px;
    background: white;
}

.success-modal-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 3px solid #222;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.success-modal-msg {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #222;
}

.success-modal-home-btn {
    background: #4285f4;
    color: white;
    border: none;
    padding: 10px 30px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 14px;
}

.hero {
    width: 100%;
    min-height: 500px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('ResidensiSeriSerindit.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-overlay {
    width: 100%;
}

.hero h1 {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: white;
}

.subtitle {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: white;
}

.hero .stats-panel {
    justify-content: center;
    gap: 100px;
    padding: 20px 80px;
    width: fit-content;
    margin: 0 auto 25px;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.num {
    font-size: 1.9rem;
    font-weight: bold;
    color: #f4e07a;
    line-height: 1;
    margin-bottom: 5px;
}

.label {
    font-size: 0.9rem;
    color: white;
}

.btn-add-slot {
    background: #dcdcdc;
    color: black;
    border: none;
    padding: 18px 80px;
    border-radius: 15px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    width: 600px;
    display: block;
    margin: 0 auto;
}

.btn-add-slot:hover {
    background: #c0c0c0;
    transition: 0.2s;
}

.btn-add-primary {
    background: #dcdcdc;
    color: black;
    border: none;
    padding: 18px 80px;
    border-radius: 15px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    width: 600px;
    display: block;
    margin: 0 auto;
}

.btn-add-primary:hover {
    background: #c0c0c0;
    transition: 0.2s;
}

.sub-section-title {
    position: relative;
    overflow: visible;
    background: white;
    color: black;
    text-align: center;
    padding: 10px 20px;
    margin: 30px auto 25px;
    width: 700px;
    max-width: 600px;
    box-sizing: border-box;
}

.sub-section-title h3 {
    font-size: 1.2rem;
    font-weight: bold;
}

.listing-card {
    background: #dcdcdc;
    border-radius: 15px;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    color: #333;
    width: 100%;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

.listing-section-title {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    padding: 0 4px;
    display: block;
    align-self: flex-start;
    width: 100%;
    max-width: 900px;
    text-align: left;
}

.slot-info p {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 2px;
}

.card-actions {
    display: flex;
    gap: 15px;
}

.card-actions button {
    padding: 12px 25px;
    border-radius: 4px;
    border: none;
    font-weight: bold;
    cursor: pointer;
}

.card-actions button:hover {
    opacity: 0.8;
    transition: 0.2s;
}

.edit-btn {
    background: white;
    color: black;
}

.edit-btn:hover {
    background: #b0b0b0;
}

.approve-btn,
.available-btn,
.unavailable-btn {
    background: #7f8c8d;
    color: white;
}

.history-link-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 15px !important;
    margin-bottom: 30px !important;
}

.btn-history {
    display: inline-block;
    border: 2px solid white;
    border-radius: 15px;
    padding: 12px 40px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    width: 650px;
    text-align: center;
}

.btn-history:hover {
    background-color: #ffffff;
    color: #1e2d3b;
}

#acceptSuccessModal .modal-box {
    width: 320px;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#bookedSlotsContainer {
    margin-bottom: 20px !important;
}

#bookedSlotsContainer .listing-card:last-child,
#bookedSlotsContainer p:last-child {
    margin-bottom: 0 !important;
}

.page-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    justify-content: flex-start;
    box-sizing: border-box;
}

.addslot-overlay,
.editslot-overlay {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.addslot-modal-box,
.editslot-modal-box {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 9px;
    width: 95%;
    max-width: 600px;
    max-height: 85vh;
    overflow-y: auto;
    text-align: left;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    position: relative;
    scrollbar-width: none;
}

.addslot-modal-box::-webkit-scrollbar,
.editslot-modal-box::-webkit-scrollbar {
    display: none;
}

.addslot-title,
.editslot-title {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #000;
}

.addslot-group,
.editslot-group {
    background-color: #c9d6f1;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 15px;
}

.addslot-label,
.editslot-label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    color: #000;
}

.addslot-input,
.editslot-input,
.addslot-select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #ffffff;
    font-size: 16px;
}

.addslot-radio-option,
.editslot-radio-option {
    background-color: #f8f9fa;
    padding: 12px;
    margin-bottom: 8px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.addslot-radio-option:has(input:checked),
.editslot-radio-option:has(input:checked) {
    background-color: #FFEB3B;
    border: 1px solid #e6d800;
}

.addslot-radio-option span,
.editslot-radio-option span {
    color: #000 !important;
    font-size: 16px;
    font-weight: 500;
    margin-left: 10px;
}

.addslot-btn-container,
.editslot-btn-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 20px;
}

.addslot-btn-save,
.editslot-btn-save {
    background-color: #2ecc71;
    color: white;
    border: none;
    padding: 15px 40px;
    min-width: 200px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
}

.addslot-close,
.editslot-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #000;
}

.reject-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.reject-modal-box {
    background: white;
    width: 90%;
    max-width: 400px;
    padding: 30px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.reject-title-main {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
    font-weight: bold;
}

.reject-subtitle-red {
    color: #d9534f;
    font-size: 18px;
    margin-bottom: 5px;
}

.reject-description {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}

.reject-options-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
}

.reject-option-btn {
    background: white;
    border: 1px solid #e0e0e0;
    padding: 12px 20px;
    border-radius: 12px;
    text-align: left;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
}

.reject-option-btn:hover {
    background: #f9f9f9;
}

.reject-option-btn.active {
    background: #fde8e8;
    color: #c0392b;
    border-color: #c0392b;
    font-weight: bold;
}

.reject-footer-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.reject-btn-cancel {
    flex: 1;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid #ccc;
    background: #f0f0f0;
    color: #333;
    cursor: pointer;
    font-weight: bold;
    transition: 0.2s;
}

.reject-btn-cancel:hover {
    background: #dcdcdc;
    border-color: #999;
}

.reject-btn-submit {
    flex: 2;
    padding: 12px;
    border-radius: 12px;
    border: none;
    background: #e74c3c;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s;
}

.reject-btn-submit:hover {
    background: #c0392b;
}

.tooltip-wrap {
    position: absolute;
    top: 2px;
    right: -32px;
    display: inline-block;
}

.tooltip-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #5c85ff;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.tooltip-icon:hover {
    background: #8eabff;
}

.tooltip-box {
    display: none;
    position: absolute;
    left: 32px;
    top: 50%;
    transform: translateY(-50%);
    width: 250px;
    background: #f0f4f8;
    color: #2c3e50;
    border: 1px solid #b0c4d8;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 13px;
    line-height: 1.5;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    text-align: left;
    font-weight: 400 !important;
}

.tooltip-box::after {
    content: " ";
    position: absolute;
    top: 50%;
    right: 100%;
    margin-top: -5px;
    border-width: 10px;
    border-style: solid;
    border-color: transparent #85B7EB transparent transparent;
}

.tooltip-wrap:hover .tooltip-box {
    display: block;
}

.history-hero {
    width: 100%;
    min-height: 500px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('ResidensiSeriSerindit.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.history-hero-overlay {
    width: 100%;
}

.history-hero h1 {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: white;
}

.history-subtitle {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: white;
}

.history-section-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    margin: 30px 0 20px;
    text-align: center;
}

.history-filter-dropdown {
    position: relative;
    display: inline-block;
}

.history-custom-select {
    width: 250px;
    padding: 10px 15px;
    border-radius: 8px;
    background-color: #e0e0e0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #333;
    font-size: 16px;
    margin: 0 auto;
}

.history-custom-options {
    display: none;
    width: 250px;
    background-color: #e0e0e0;
    border-radius: 8px;
    margin-top: 5px;
    overflow: hidden;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
}

.history-custom-options div {
    padding: 10px 15px;
    cursor: pointer;
    color: #333;
}

.history-custom-options div:hover {
    background-color: var(--yellow);
}

.history-custom-options.open {
    display: block;
}

.history-container {
    padding: 40px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.history-group {
    margin-bottom: 40px;
    text-align: center;
}

.history-group-label {
    background-color: #7f8c8d;
    color: #fff;
    display: inline-block;
    padding: 10px 80px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-weight: bold;
}

.history-card {
    background: #f5f5f5;
    border-radius: 15px;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 20px;
    overflow: hidden;
    text-align: left;
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: max-content;
}

.history-card.card-ongoing,
.history-card.card-expired,
.history-card.card-available,
.history-card.card-pending,
.history-card.card-rejected,
.history-card.card-completed {
    border-left: none;
}

.history-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 22px 24px 16px;
    background: #f5f5f5;
}
 
/* Bahagian asal Tenant (tambah 1fr lagi) */
.history-card-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr; /* Ubah dari 1fr 1fr kepada 1fr 1fr 1fr */
    border-top: 2px solid #c0c0c0;
    padding: 20px 24px;
    background: #f5f5f5;
    gap: 0;
}

/* Bahagian Host */
.history-card-bottom.host-bottom {
    grid-template-columns: 1fr 1fr 1.5fr; /* Ini kekal */
}


 
.history-card-bottom-col {
    padding-top: 5px;
    padding-left: 15px;
    padding-right: 15px;
    border-right: 2px solid #d0d0d0;
}
 
.history-card-bottom-col:first-child { padding-left: 0; }
.history-card-bottom-col:last-child {
    border-right: none;
    padding-right: 0;
    padding-left: 20px;
}
 
.date-container {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

/* Card Text */
.history-card-slot {
    font-size: 20px;
    font-weight: bold;
    margin: 0 0 8px;
    color: #111;
}

.history-card-label,
.history-card-total-label {
    font-size: 10px;
    color: #555;
    margin: 0 0 4px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.history-card-total-label {
    text-align: right;
}

.history-card-value {
    font-size: 14px;
    font-weight: 500;
    color: #222;
    margin: 0 0 2px;
}

.history-card-subvalue {
    font-size: 12px;
    color: #666;
    margin: 0;
}

.history-card-total {
    font-size: 26px;
    font-weight: bold;
    color: #185FA5;
    margin: 0;
    line-height: 1.1;
}

.history-card-sublabel {
    font-size: 12px;
    color: #777;
    margin-top: 3px;
}

.history-card-reason {
    border-top: 1px solid #e0a0a0;
    padding: 12px 24px;
    background: #f5c6c6;
}

.history-card-reason-text {
    font-size: 13px;
    color: #5a0a0a;
    margin: 0;
    font-weight: 600;
}

/* Badges */
.history-card-badge {
    display: inline-block;
    font-size: 12px;
    padding: 3px 14px;
    border-radius: 20px;
    font-weight: 500;
    background: #E1F5EE;
    color: #0F6E56;
    border: 1px solid #5DCAA5;
}

.history-card-badge-green {
    background: #E1F5EE;
    color: #0F6E56;
    border-color: #5DCAA5;
}

.history-card-badge-yellow {
    background: #FAEEDA;
    color: #854F0B;
    border-color: #EF9F27;
}

.history-card-badge-red {
    background: #FCEBEB;
    color: #A32D2D;
    border-color: #F09595;
}

.history-card-badge-gray {
    background: #E1F5EE;
    color: #0F6E56;
    border-color: #5DCAA5;
}

.history-card-badge-blue {
    background: #E6F1FB;
    color: #185FA5;
    border-color: #85B7EB;
}

/* BUTTONS */
.history-btn-yellow,
.history-status-badge {
    background-color: #f9e79f;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    color: #333;
    text-decoration: none;
}

.history-btn-yellow:hover {
    background-color: #f7dc6f;
}

.history-status-badge {
    cursor: default;
}

#bookedSlotsContainer {
    padding-bottom: 40px;
    min-height: 100px;
}

.map-page-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    margin-top: 12px;
    letter-spacing: 0.06em;
}

.map-section {
    background: #1e2d3d;
    min-height: 80vh;
    padding: 30px 20px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.level-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 24px;
}

.level-tab {
    background: #2c3e50;
    color: #aaa;
    border: 2px solid transparent;
    border-radius: 8px;
    padding: 10px 30px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.level-tab:hover {
    background: #34495e;
    color: #fff;
}

.level-tab.active {
    background: #f4e07a;
    color: #1a1a1a;
    border-color: #d4c060;
}

.map-body {
    display: flex;
    gap: 18px;
    width: 100%;
    max-width: 1200px;
    align-items: flex-start;
}

.col-nav {
    background: #162233;
    border-radius: 12px;
    padding: 16px 12px;
    min-width: 130px;
    flex-shrink: 0;
    max-height: 70vh;
    overflow-y: auto;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.col-nav h4 {
    color: #f4e07a;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 12px;
    text-align: center;
}

.col-divider {
    border: none;
    border-top: 1px solid #2c3e50;
    margin: 8px 0;
}

.cnav-btn {
    display: block;
    width: 100%;
    background: #253545;
    color: #bbb;
    border: 1px solid transparent;
    border-radius: 7px;
    padding: 9px 12px;
    margin-bottom: 5px;
    font-size: 0.78rem;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
    transition: all 0.18s;
    letter-spacing: 0.02em;
}

.cnav-btn:hover {
    background: #2c3e50;
    color: #fff;
    border-color: #3d5166;
}

.cnav-btn.active {
    background: #f4e07a;
    color: #1a1a1a;
    font-weight: 700;
    border-color: #d4c060;
}

.show-all-btn {
    background: #1a2b3c;
    color: #7fb3d3;
    font-style: italic;
}

.show-all-btn:hover {
    background: #253545;
    color: #a0d0f0;
}

.map-card {
    background: #fff;
    border-radius: 12px;
    padding: 18px 20px 20px;
    overflow-x: hidden;
    flex: 1;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

.map-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid #eee;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: #444;
    font-weight: 500;
}

.ldot {
    display: inline-block;
    width: 14px;
    height: 14px;
    border-radius: 3px;
    flex-shrink: 0;
}

.ptable {
    border-collapse: separate;
    border-spacing: 3px;
    margin: 0 auto;
    min-width: max-content;
}

.ps {
    width: 72px;
    height: 38px;
    border-radius: 5px;
    text-align: center;
    vertical-align: middle;
    font-size: 0.6rem;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s, opacity 0.2s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 2px 3px;
    border: 2px solid transparent;
    user-select: none;
    letter-spacing: 0.02em;
}

.sa {
    background: #43a047;
}

.sr {
    background: #e53935;
    cursor: not-allowed;
}

.sp {
    background: #fb8c00;
    cursor: not-allowed;
}

.su {
    background: #616161;
    cursor: not-allowed;
}

.sg {
    background: #bdbdbd;
    cursor: default;
    color: #666;
}

.sv {
    background: #42a5f5;
    cursor: default;
    font-size: 0.55rem;
}

.sa:hover {
    transform: scale(1.09);
    box-shadow: 0 3px 10px rgba(67, 160, 71, 0.55);
}

.col-highlight {
    border-color: #f4e07a !important;
    box-shadow: 0 0 8px rgba(244, 224, 122, 0.8) !important;
    transform: scale(1.05);
}

.col-dim {
    opacity: 0.22;
}

.search-hit {
    animation: searchPulse 0.6s ease-in-out 4;
    border-color: #fff !important;
}

@keyframes searchPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
    }

    50% {
        transform: scale(1.13);
        box-shadow: 0 0 12px 6px rgba(255, 255, 255, 0.3);
    }
}

.ln {
    width: 16px;
    background: #e8ecef;
    border-radius: 2px;
    min-width: 12px;
}

.struct {
    text-align: center;
    vertical-align: middle;
    font-size: 0.68rem;
    font-weight: 700;
    border-radius: 6px;
    padding: 5px 4px;
    color: #fff;
    white-space: nowrap;
    letter-spacing: 0.03em;
}

.lift {
    background: #1565c0;
}

.stairs {
    background: #37474f;
}

.exit {
    background: #37474f;
}

.ramp {
    background: #6d4c41;
    font-size: 0.72rem;
}

.aisle {
    background: #eceff1;
    text-align: center;
    font-size: 0.68rem;
    font-weight: 700;
    color: #546e7a;
    padding: 7px 4px;
    border-radius: 4px;
    letter-spacing: 0.08em;
}

.fsp {
    background: transparent;
}

.slot-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9000;
    justify-content: center;
    align-items: center;
}

.slot-modal.open {
    display: flex;
}

.slot-modal-box {
    background: #fff;
    border-radius: 16px;
    padding: 32px 36px;
    min-width: 290px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
    animation: modalIn 0.2s ease-out;
}

@keyframes modalIn {
    from {
        transform: scale(0.88);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.slot-modal-box h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin: 0 0 12px;
}

.slot-modal-box #modal-price {
    color: #555;
    font-size: 0.88rem;
    margin: 8px 0 20px;
}

.status-badge {
    display: inline-block;
    padding: 5px 16px;
    border-radius: 20px;
    font-size: 0.83rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.badge-available {
    background: #e8f5e9;
    color: #2e7d32;
}

.badge-rented {
    background: #ffebee;
    color: #c62828;
}

.badge-pending {
    background: #fff3e0;
    color: #e65100;
}

.badge-unavail {
    background: #f5f5f5;
    color: #424242;
}

.badge-gray {
    background: #f5f5f5;
    color: #757575;
}

.modal-btn {
    background: #2c3e50;
    color: #fff;
    border: none;
    padding: 10px 26px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.88rem;
    font-weight: 600;
    transition: background 0.2s;
}

.modal-btn:hover {
    background: #1a252f;
}

.modal-btn.secondary {
    background: #e0e0e0;
    color: #333;
}

.modal-btn.secondary:hover {
    background: #c8c8c8;
}

.col-summary {
    display: none;
    position: fixed;
    bottom: 28px;
    right: 28px;
    background: #1e2d3d;
    color: #ccc;
    border-radius: 12px;
    padding: 16px 20px;
    min-width: 190px;
    font-size: 0.82rem;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.45);
    z-index: 999;
    animation: slideUp 0.2s ease-out;
}

.col-summary.visible {
    display: block;
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cs-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.cs-header h5 {
    margin: 0;
    color: #f4e07a;
    font-size: 0.88rem;
}

.cs-close {
    background: none;
    border: none;
    color: #aaa;
    cursor: pointer;
    font-size: 1rem;
    padding: 0;
    line-height: 1;
}

.cs-close:hover {
    color: #fff;
}

.cs-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.cs-num {
    font-weight: 700;
    font-size: 0.9rem;
}

.cs-total-row {
    border-top: 1px solid #2c3e50;
    margin-top: 7px;
    padding-top: 7px;
    color: #fff;
}

.col-nav::-webkit-scrollbar {
    width: 5px;
}

.col-nav::-webkit-scrollbar-track {
    background: #1a2738;
    border-radius: 10px;
}

.col-nav::-webkit-scrollbar-thumb {
    background: #2c3e50;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .map-body {
        flex-direction: column;
    }

    .col-nav {
        min-width: 100%;
        max-height: none;
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
        padding: 12px;
    }

    .col-nav h4 {
        width: 100%;
        margin-bottom: 6px;
    }

    .cnav-btn {
        width: auto;
        flex-shrink: 0;
    }

    .col-summary {
        bottom: 10px;
        right: 10px;
        left: 10px;
    }

    .slot-modal-box {
        padding: 24px 20px;
        min-width: 250px;
    }
}

.reservation-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: flex-start;
    overflow-y: auto;
    padding: 30px 0;
}

.reservation-card {
    background: #f4f4f4;
    color: #333;
    width: 95%;
    max-width: 600px;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    margin: 0 auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.reservation-card::-webkit-scrollbar {
    display: none;
}

.reservation-close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    color: #000;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
    z-index: 100;
}

.reservation-close-btn:hover {
    opacity: 0.6;
    transform: scale(1.1);
}

.reservation-main-title {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.reservation-error-msg {
    display: none;
    color: #e74c3c;
    font-size: 13px;
    font-weight: 600;
    background: #fff5f5;
    border-left: 4px solid #e74c3c;
    padding: 10px 14px;
    border-radius: 8px;
    margin-bottom: 14px;
}

.parking-info-section {
    background: #2c3e50;
    color: white;
    padding: 20px;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.parking-info-section-title {
    color: #e74c3c;
    font-weight: bold;
    margin-bottom: 10px;
}

.parking-info-content p {
    margin: 5px 0;
    font-size: 0.9rem;
}

.whatsapp-contact-btn {
    background: #25d366;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.8rem;
    text-decoration: none;
    gap: 8px;
    justify-content: center;
}

.whatsapp-contact-btn img {
    width: 25px;
    margin-bottom: 5px;
}

.rental-period-section {
    background: white;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
}

.rental-period-title {
    color: #e74c3c;
    font-weight: bold;
    margin-bottom: 10px;
}

.rental-period-label {
    font-size: 13px;
    color: #666;
    margin-bottom: 10px;
}

.rental-period-option {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    border: 1px solid #eee;
    border-radius: 12px;
    margin-bottom: 8px;
    cursor: pointer;
    background: white;
    transition: background-color 0.3s;
}

.rental-period-option:has(input[type="radio"]:checked) {
    background-color: #f4e07a;
}

.rental-period-option input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #555;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    flex-shrink: 0;
    position: relative;
}

.rental-period-option input[type="radio"]:checked::after {
    content: "";
    width: 10px;
    height: 10px;
    background-color: #2196F3;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.rental-period-duration-text {
    flex: 1;
    margin-left: 10px;
    font-weight: bold;
}

.rental-period-price-text {
    color: #666;
    font-weight: normal;
    margin-left: auto;
}

.car-plate-section {
    background: white;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
}

.car-plate-title {
    color: #e74c3c;
    font-weight: bold;
    margin-bottom: 10px;
}

.car-plate-label {
    font-size: 13px;
    color: #666;
    margin-bottom: 15px;
}

.car-plate-input-group {
    background-color: #ededed;
    border-radius: 10px;
    padding: 10px 15px;
    display: flex;
    flex-direction: column;
}

.car-plate-input-group input {
    width: 100%;
    border: none;
    background: transparent;
    font-size: 16px;
    color: #000;
    outline: none;
    padding: 0;
}

.payment-method-section {
    background: white;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
}

.payment-method-title {
    color: #e74c3c;
    font-weight: bold;
    margin-bottom: 10px;
}

.payment-method-label {
    font-size: 13px;
    color: #666;
    margin-bottom: 10px;
}

.payment-method-option {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    border-radius: 12px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    background-color: #f5f5f5;
    border: 1px solid transparent;
}

.payment-method-option:has(input[type="radio"]:checked),
.payment-method-option.active {
    background-color: #f9e27d !important;
    border: 1px solid #e0c54a;
}

.payment-method-option.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background-color: #eee;
}

.payment-method-radio-circle {
    width: 18px;
    height: 18px;
    border: 2px solid #555;
    border-radius: 50%;
    margin-right: 12px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-method-option:has(input[type="radio"]:checked) .payment-method-radio-circle::after,
.payment-method-option.active .payment-method-radio-circle::after {
    content: "";
    width: 10px;
    height: 10px;
    background-color: #2196F3;
    border-radius: 50%;
}

.payment-method-text {
    font-size: 14px;
    font-weight: bold;
    flex-grow: 1;
}

.payment-method-disabled-tag {
    font-size: 11px;
    color: #e74c3c;
    font-weight: bold;
    margin-left: 10px;
}

.reservation-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    background-color: #dcdcdc;
    padding: 15px 25px;
    margin: 20px -25px -25px;
    width: calc(100% + 50px);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    box-sizing: border-box;
}

.reservation-footer-total {
    font-weight: bold;
    font-size: 1.2rem;
    color: #2c3e50;
}

.reservation-footer-total-amount {
    font-size: 1.2rem;
    font-weight: bold;
    color: #2c3e50;
}

.reservation-request-btn {
    background: #2c3e50;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Arial, sans-serif;
}

body {
    background-color: #f9f9f9;
}

header {
    background-color: white;
    padding: 15px 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-after-login {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 5px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 5px;
    transition: 0.2s;
}

.nav-links a.active {
    background: #e0e0e0;
    color: #000;
}

.nav-links a:hover {
    background: #f0f0f0;
    color: #000;
}

.hero {
    width: 100%;
    min-height: 500px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('ResidensiSeriSerindit.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-content h1 {
    font-size: 60px;
    font-weight: bold;
    margin-bottom: 5px;
}

.hero-content .subtitle {
    font-size: 24px;
    margin-bottom: 25px;
}

.hero-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-light {
    padding: 12px 25px;
    background: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    color: #333;
    transition: 0.2s;
}

.btn-light:hover {
    background: #f0f0f0;
}

.btn-dark-outline {
    padding: 12px 25px;
    background: #2c3e50;
    color: white;
    border: 1px solid white;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.btn-dark-outline:hover {
    background: #1a252f;
}

.info-section {
    background-color: #2C3D5B;
    color: white;
    padding: 70px 20px;
    text-align: center;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
}

.welcome-text {
    margin: 0 auto 50px;
    font-size: 18px;
    opacity: 0.9;
}

.info-title {
    text-align: left;
    font-size: 20px;
    margin-bottom: 25px;
    font-weight: normal;
}

.card-container {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.card {
    background: white;
    color: #333;
    padding: 45px 25px;
    border-radius: 10px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card i {
    font-size: 45px;
    margin-bottom: 20px;
    color: #2c3e50;
    display: block;
}

.card h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.card p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

:root {
    --primary-blue: #4a90e2;
    --dark-bg: #2c3e50;
    --card-bg: #dcdcdc;
    --yellow: #f4e07a;
    --text-white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #2c3e50;
    color: white;
}

.navbar {
    display: flex;
    margin-left: 0;
    justify-content: space-between;
    align-items: center;
    padding: 0px 5%;
    background: white;
    width: 100%;
    min-height: 60px;
}

.navbar nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    height: 100%;
}

.navbar nav a {
    text-decoration: none;
    color: #333;
    margin: 0 12px;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
}

.navbar nav a.active {
    background: #e0e0e0;
    padding: 6px 15px;
    border-radius: 20px;
}

.auth-buttons {
    display: flex;
    gap: 10px;
    margin-left: 20px;
}

.btn-signup,
.btn-login {
    padding: 8px 18px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
}

.btn-signup {
    background: #f0f0f0;
    border: 1px solid #ccc;
    color: #333;
}

.btn-login {
    background: #2c3e50;
    color: white;
    border: none;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #e0e0e0;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 100;
    border-radius: 10px;
    margin-top: 5px;
    overflow: hidden;
}

.show {
    display: block !important;
}

.dropdown-content a {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 0.85rem;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: #d0d0d0;
}

.dropdown-content hr {
    border: 0;
    border-top: 1px solid #ccc;
    margin: 0;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    display: none;
    cursor: pointer;
}

.modal-box {
    background: white;
    padding: 40px;
    border-radius: 20px;
    width: 400px;
    text-align: center;
    cursor: default;
    position: relative;
    margin: 0;
}

.modal-box button {
    cursor: pointer;
}

.modal-box h2 {
    font-weight: bold;
    margin-bottom: 10px;
    color: black;
    font-size: 1rem;
}

.modal-box p {
    color: black;
    text-align: center;
    margin: 0 auto 10px;
    font-size: 1rem;
    font-weight: bold;
    display: block;
    width: 100%;
    line-height: 1.5;
}

.modal-box p span {
    font-weight: normal;
    display: inline-block;
    padding-left: 5px;
}

.modal-btn-row {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.error-circle {
    width: 80px;
    height: 80px;
    border: 4px solid black;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 50px;
    font-weight: bold;
    color: black;
    margin: 0 auto 20px;
}

.success-circle {
    width: 80px;
    height: 80px;
    border: 3px solid black;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 40px;
    color: black;
    margin: 0 auto 20px;
}

.success-msg-bold {
    display: block;
    font-size: 1.2rem;
    font-weight: bold;
    color: black;
    margin-bottom: 20px;
    text-align: center;
}

.modal-text-center {
    text-align: center;
    width: 100%;
    display: block;
}

.btn-approve {
    flex: 1;
    background: #2ecc71;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
}

.btn-reject {
    flex: 1;
    background: #e74c3c;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
}

.btn-cancel {
    width: auto;
    flex: 1;
    margin-top: 0;
    background: #dcdcdc;
    border: none;
    padding: 12px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    color: black;
}

.btn-cancel-full {
    width: 100%;
    margin-top: 10px;
    background: #dcdcdc;
    border: none;
    padding: 12px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    color: black;
    font-size: 1rem;
}

.home-btn {
    background-color: #4a90e2 !important;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 15px;
    width: 100%;
}

.container {
    max-width: 850px;
    margin: 0 auto;
    padding: 0 20px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

select:focus {
    outline: none;
    box-shadow: none;
}

/* ============================================
   RESPONSIVE PATCH - Tambah ke BAWAH style.css
   ============================================ */

/* 1. BUANG min-width yang lock website jadi 1100px */
html {
    overflow-x: hidden !important;
}

body {
    min-width: unset !important;
    width: 100% !important;
    overflow-x: hidden !important;
}

/* 2. HAMBURGER MENU BUTTON */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    margin-left: auto;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #2c3e50;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* 3. MOBILE STYLES */
@media (max-width: 768px) {

    /* NAVBAR */
    .navbar {
        flex-wrap: wrap;
        padding: 10px 16px;
        position: relative;
    }

    .hamburger {
        display: flex;
    }

    .navbar nav {
        display: none;
        flex-direction: column;
        width: 100%;
        background: white;
        padding: 10px 0;
        border-top: 1px solid #eee;
        margin-top: 8px;
        gap: 0;
    }

    .navbar nav.open {
        display: flex;
    }

    .navbar nav a {
        padding: 12px 16px;
        margin: 0;
        border-radius: 0;
        font-size: 1rem;
        border-bottom: 1px solid #f0f0f0;
    }

    .navbar nav a.active {
        background: #f0f0f0;
        border-radius: 0;
        padding: 12px 16px;
    }

    .auth-buttons {
        display: none;
    }

    .navbar-user-info {
        display: none;
    }

    .brand-title {
        font-size: 20px;
    }

    /* HERO */
    .hero-section-overlay h1,
    .hero h1,
    .history-hero h1 {
        font-size: 2rem !important;
    }

    .hero-section-subtitle,
    .subtitle,
    .history-subtitle {
        font-size: 1.1rem !important;
        margin-bottom: 20px !important;
    }

    /* SEARCH */
    .search-container {
        flex-direction: column;
        width: 95%;
        gap: 10px;
    }

    .dropdown {
        width: 100%;
    }

    .filter-dropdown-trigger {
        width: 100%;
    }

    /* STATS */
    .stats-panel {
        width: 95%;
        padding: 15px 10px;
        gap: 10px;
    }

    .stats-panel-num,
    .num {
        font-size: 1.4rem !important;
    }

    /* BUTTONS */
    .parking-map-btn,
    .btn-awaiting {
        width: 100% !important;
        max-width: 100% !important;
        padding: 14px !important;
    }

    .load-more-btn {
        width: 90% !important;
    }

    .btn-add-slot,
    .btn-add-primary,
    .btn-history {
        width: 90% !important;
        padding: 15px 20px !important;
    }

    /* CARDS */
    .parking-listing-card {
        flex-direction: column;
        text-align: center;
        padding: 16px;
        gap: 12px;
    }

    .parking-listing-details-btn {
        width: 100%;
        padding: 12px;
    }

    .card-container {
        flex-direction: column;
    }

    .listing-card {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 16px;
    }

    .card-actions {
        width: 100%;
        justify-content: center;
    }

    /* HISTORY */
    .history-card-bottom {
        grid-template-columns: 1fr !important;
        gap: 15px;
    }

    .history-card-bottom-col {
        border-right: none !important;
        border-bottom: 1px solid #d0d0d0;
        padding: 10px 0 !important;
    }

    .history-card-bottom-col:last-child {
        border-bottom: none;
    }

    .history-card-top {
        flex-direction: column;
        gap: 10px;
    }

    /* RESERVATION */
    .reservation-card {
        width: 95%;
        padding: 16px;
        max-height: 85vh;
    }

    .reservation-footer {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        margin: 15px -16px -16px;
        width: calc(100% + 32px);
        padding: 15px;
    }

    .reservation-request-btn {
        width: 100%;
    }

    /* HOMEPAGE INFO SECTION */
    .hero-btns {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .btn-light,
    .btn-dark-outline {
        width: 200px;
    }

    /* MODALS */
    .modal-box,
    .modal-small {
        width: 90% !important;
        max-width: 90% !important;
        padding: 25px 20px !important;
    }
}