/* ── Calendly Buttons for Elementor ── */

.cbe-widget {
    width: 100%;
}

/* Button row */
.cbe-buttons-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

/* Individual button */
.cbe-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
    /* Default colors (overridden by Elementor style controls) */
    color: #ffffff;
    background-color: #417b88;
}

.cbe-btn:hover {
    opacity: 0.9;
}

.cbe-btn:active {
    transform: scale(0.98);
}

.cbe-btn.cbe-btn--active {
    background-color: #34626d;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15);
}

/* Embed container */
.cbe-embed-container {
    width: 100%;
    min-width: 320px;
    overflow: hidden;
    border-radius: 8px;
}

/* Calendly iframe injected by widget.js */
.cbe-embed-container .calendly-inline-widget,
.cbe-embed-container iframe {
    width: 100% !important;
    min-height: 700px;
}

/* ── Responsive ── */
@media (max-width: 480px) {
    .cbe-buttons-row {
        flex-direction: column;
    }

    .cbe-btn {
        width: 100%;
    }
}
