:root {
    --fc-border-color: #f1f5f9;
    --fc-button-bg-color: var(--primary-clr);
    --fc-button-border-color: var(--primary-clr);
    --fc-button-hover-bg-color: #cc842e;
    --fc-button-hover-border-color: #cc842e;
    --fc-button-active-bg-color: #b57428;
    --fc-button-active-border-color: #b57428;
}

.fc {
    background: white;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
    border: none;
    font-family: 'Inter', sans-serif;
}

.fc-toolbar-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700 !important;
    color: #1e293b;
    font-size: 1.5rem !important;
}

.fc-button {
    font-weight: 600 !important;
    border-radius: 10px !important;
    padding: 8px 16px !important;
    text-transform: capitalize;
    transition: all 0.2s ease;
}

.fc-today-button {
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    color: #64748b !important;
}

.fc-daygrid-day-number {
    font-weight: 600;
    color: #64748b;
    padding: 10px !important;
    text-decoration: none !important;
}

.fc-col-header-cell-cushion {
    font-weight: 700;
    color: #1e293b;
    padding: 12px 0 !important;
    text-decoration: none !important;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
}

/* Custom Event Tile */
.calendar-event-card {
    padding: 8px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--clr-4) 0%, #d97706 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.event-guest-name {
    font-weight: 700;
    font-size: 12px;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.event-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.event-detail-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    opacity: 0.9;
}

.event-detail-item i {
    width: 12px;
    text-align: center;
    font-size: 9px;
}

.event-value {
    margin-top: 4px;
    font-weight: 700;
    font-size: 11px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 4px;
}

.fc-daygrid-event {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    margin: 2px 4px !important;
}

.fc-v-event {
    background: transparent !important;
    border: none !important;
}

.fc-daygrid-more-link {
    font-weight: 700;
    color: var(--clr-4);
    font-size: 11px;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .fc {
        padding: 10px;
        border-radius: 0;
    }
    .fc-toolbar {
        flex-direction: column;
        gap: 15px;
    }
    .fc-toolbar-chunk {
        display: flex;
        justify-content: center;
        width: 100%;
    }
    .fc-toolbar-title {
        font-size: 1.2rem !important;
    }
    .event-detail-item span {
        display: none;
    }
    .event-value {
        font-size: 9px;
    }
}

/* Custom Button */
.btn-new-booking {
    background-color: var(--primary-clr) !important;
    border-color: var(--primary-clr) !important;
    color: white !important;
    display: flex;
    align-items: center;
    gap: 8px;
}
.btn-new-booking:hover {
    background-color: #cc842e !important;
}

/* Floating Action Button (FAB) */
.fab-new-booking {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    color: white;
    border-radius: 50%;
    display: none; /* Hidden by default */
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 10px 25px rgba(217, 119, 6, 0.4);
    cursor: pointer;
    transition: var(--transition);
    z-index: 1500;
    border: none;
}

.fab-new-booking:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 30px rgba(217, 119, 6, 0.5);
}

@media (max-width: 768px) {
    .fab-new-booking {
        display: flex;
    }
    .fc-newBookingBtn-button {
        display: none !important;
    }
}
