 
        /* Base */
        body {
            background: #f5f7fa;
        }

        /* Cards */
        .card {
            transition: 0.2s ease;
        }
        .card:hover {
            transform: translateY(-5px);
        }

        /* Inputs */
        .input-group-text {
            background: #fff;
            border-right: 0;
        }
        .input-group .form-control {
            border-left: 0;
        }

        /* Navbar */
        .navbar-brand img {
            border-radius: 6px;
        }
        .navbar .btn {
            transition: all 0.2s ease;
        }
        .navbar .btn:hover {
            transform: translateY(-1px);
        }

        /* Guest dropdown */
        #guestDropdown {
            border-radius: 10px;
        }
        #guestDropdown button {
            width: 32px;
        }

        /* Amenities */
        .list-unstyled li {
            padding: 2px 0;
        }
        .amenity-grid div {
            display: flex;
            align-items: center;
            gap: 6px;
        }




/* Drawer links */
.drawer-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    transition: 0.2s;
}

.drawer-link:hover {
    background: #ffc107;
    color: #000;
}

.drawer-parent {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    border-radius: 10px;
    cursor: pointer;
}

.drawer-parent:hover {
    background: #f1f1f1;
}

.drawer-sublink {
    display: block;
    padding: 8px 10px;
    border-radius: 8px;
    text-decoration: none;
    color: #555;
    font-size: 14px;
}

.drawer-sublink:hover {
    background: #ffc107;
    color: #000;
}


 
/* Buttons */
.btn {
    border-radius: 12px;
    padding: 12px;
    font-weight: 500;
}

/* Navbar polish */
.navbar {
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

 
/* ================= DRAWER ================= */
 

.home-btn {
    border-radius: 8px;
    transition: all 0.2s ease;
}

.home-btn:hover {
    background: #ffc107;
    color: #000 !important;
    border-color: #ffc107;
    transform: translateY(-1px);
}


.nav-btn {
    color: #fff;
    text-decoration: none;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.2s ease;
}

.nav-btn:hover {
    background: rgba(255,255,255,0.1);
    color: #ffc107;
}

.active-nav {
    background: #ffc107;
    color: #000 !important;
    font-weight: 600;
}

 
   