.search-container {
    max-width: 725px;
    margin: 30px auto;
    opacity: 0;
    animation: up 0.9s ease 3.4s forwards;
}

.search-bar {
    /* Glassmorphism look: Semi-transparent black */
    background: rgba(0, 0, 0, 0.7);
    border-radius: 100px;
    padding: 8px 10px;
    border: 1px solid rgba(var(--rgb), 0.4);
    /* Subtle Golden Border */
    backdrop-filter: blur(10px);
    /* Background blur effect */
}

.search-item {
    padding: 5px 15px;
    text-align: left;
}

/* Vertical Divider Color */
.search-item.border-end {
    border-color: rgba(var(--rgb), 0.4) !important;
}

.search-label {
    display: block;
    padding: 0px 5px !important;
    font-size: 12px;
    font-weight: 600;
    color: rgba(var(--rgb), 0.7);
    /* Luxury Golden color */
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0px;
}

/* Input aur Select box styling */
.form-select,
.form-control {
    background-color: #000 !important;
    color: #ffffff !important;
    font-size: 16px;
    font-weight: 500;
    padding: 0px 5px !important;
    cursor: pointer;
}

/* Dropdown arrow ko white karne ke liye */
.form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23fccc33' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
}

.btn-search-gold {
    background: var(--gold);
    color: #0c0a06;
    font-weight: 700;
    border: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(var(--rgb), 0.5);
}

.btn-search-gold:hover {
    background: var(--gold2);
    color: #0c0a06;
    transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .search-bar {
        flex-direction: column;
        border-radius: 20px;
        padding: 20px;
    }

    .search-item {
        border-right: none !important;
        border-bottom: 1px solid rgba(var(--rgb), 0.3);
        width: 100%;
        padding: 10px 0;
    }

    .btn-search-gold {
        width: 100%;
        margin-top: 15px;
    }
}



<style>.calendar-container {
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 25px;
    color: var(--white);
    max-width: 400px;
    margin: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--gold-dim);
    padding-bottom: 15px;
}

#monthDisplay {
    font-size: 1.2rem;
    color: var(--gold);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 700;
}

.nav-btn {
    background: var(--gold-dim);
    border: 1px solid var(--gold2);
    color: var(--gold);
    width: 35px;
    height: 35px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.nav-btn:hover {
    background: var(--gold);
    color: var(--bg);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    text-align: center;
}

.day-name {
    font-size: 11px;
    color: var(--gold-light);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 10px;
}

.date-cell {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
    font-size: 14px;
    border: 1px solid transparent;
}

.available {
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-mid);
}

.available:hover {
    background: var(--gold-dim);
    border-color: var(--gold);
    color: var(--gold-light);
}

.booked {
    color: var(--text-dim);
    text-decoration: line-through;
    cursor: not-allowed;
    background: rgba(255, 77, 77, 0.05);
}

.selected {
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    color: var(--bg);
    font-weight: 700;
    box-shadow: 0 0 15px rgba(var(--rgb), 0.4);
}

.past {
    opacity: 0.35;
    cursor: not-allowed;
}

.calendar-legend {
    margin-top: 25px;
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: var(--text-dim);
}

.dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 5px;
}

.available-dot {
    background: var(--text-dim);
}

.booked-dot {
    background: var(--booked-red);
}

.selected-dot {
    background: var(--gold);
}

</style>