/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Nov 19 2025 | 12:28:59 */
.open-calendar-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;

    width: 100%;
    max-width: 360px;
    padding: 16px 24px;

    background: #0371EC;               /* your new blue */
    color: #ffffff !important;         /* white text */
    text-decoration: none !important;  /* remove underline */
    text-align: center;

    font-family: "Poppins", sans-serif;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.4px;

    border-radius: 12px;
    border: none;
    cursor: pointer;

    margin: 20px auto;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
    transition: all 0.25s ease;
}

.open-calendar-btn:hover {
    background: #0262cb;               /* darker hover blue */
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.22);
}

@media (max-width: 480px) {
    .open-calendar-btn {
        max-width: 100%;
        padding: 18px;
        font-size: 16px;
        border-radius: 14px;
    }
}