/* custom-see-availability-width.css */

#calendar-title {
    background: #b4d7f3 !important; /* Match theme color */
    color: white !important;
    font-weight: bold;
    padding: 15px;
    border-radius: 8px;
    display: block;
    text-align: center;
    width: 100%; /* Make it full width */
    box-sizing: border-box; /* Prevent overflow from padding */
    transition: background 0.3s ease;
}

#calendar-title:hover {
    background: #9fc9eb !important;
}
