/* Custom Override for Google Calendar Button - Premium Enterprise Style */
#calendar-booking-container {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 2rem;
    position: relative;
    z-index: 10;
    min-height: 60px;
    /* Ensure space is reserved */
}

/* Target the generated button element specifically */
#calendar-booking-container .google-calendar-appointment-scheduling-button {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    background: #ffffff !important;
    /* Pure White Background */
    color: #0d47a1 !important;
    /* Deep Royal Blue Text */
    font-family: 'Inter', -apple-system, sans-serif !important;
    font-size: 1.125rem !important;
    /* 18px */
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    padding: 18px 32px !important;
    border-radius: 8px !important;
    /* Enterprise Standard Radius */
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2), 0 2px 4px -1px rgba(0, 0, 0, 0.1) !important;
    cursor: pointer !important;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
    text-decoration: none !important;
    line-height: 1.2 !important;
}

/* Hover State - "Lift" Effect */
#calendar-booking-container .google-calendar-appointment-scheduling-button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2), 0 10px 10px -5px rgba(0, 0, 0, 0.1) !important;
    background: #f8fafc !important;
    /* Slight off-white */
    color: #1e40af !important;
}

/* Active/Click State */
#calendar-booking-container .google-calendar-appointment-scheduling-button:active {
    transform: translateY(0) !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1) !important;
}

/* Icon Styling */
#calendar-booking-container .google-calendar-appointment-scheduling-button svg {
    width: 24px !important;
    height: 24px !important;
    margin-right: 12px !important;
    fill: currentColor !important;
    color: inherit !important;
}

/* Ensure empty container doesn't collapse awkwardly */
#calendar-booking-container:empty {
    min-height: 60px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        opacity: 0.6;
    }

    50% {
        opacity: 0.3;
    }

    100% {
        opacity: 0.6;
    }
}