/* 1. Fix the calendar background and close the bracket properly */
.ahb-calendar-wrapper {
    background-color: #7BA9DA; 
}

/* 2. Change the default button color */
#fbuilder .pbSubmit {
    background-color: #597cbc !important;
    color: #ffffff !important;
    border: none !important;
    transition: all 0.3s ease;
}

/* 3. Change color on hover */
#fbuilder .pbSubmit:hover {
    background-color: #36454F !important;
}

/* 4. Change color when CLICKED (Active state) */
#fbuilder .pbSubmit:active {
    background-color: #000000 !important;
    transform: scale(0.98); /* Optional: makes the button look like it's being pressed */
}