/* Button styles (fallback if Elementor styles are not loaded) */
.kola-form-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 3px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--e-global-typography-accent-font-family, "Roboto"), Sans-serif;
    font-size: var(--e-global-typography-accent-font-size, 15px);
    font-weight: var(--e-global-typography-accent-font-weight, 500);
    line-height: 1;
    text-align: center;
}

/* Elementor button types */
.kola-form-button.elementor-button-primary {
    color: var(--e-global-color-button_text, #ffffff);
    background-color: var(--e-global-color-accent, #61ce70);
}

.kola-form-button.elementor-button-secondary {
    color: var(--e-global-color-button_text, #ffffff);
    background-color: var(--e-global-color-secondary, #54595f);
}

/* Button sizes */
.kola-form-button.elementor-size-sm {
    padding: 13px 24px;
    font-size: var(--e-global-typography-accent-font-size, 13px);
}

.kola-form-button.elementor-size-md {
    padding: 15px 30px;
    font-size: var(--e-global-typography-accent-font-size, 15px);
}

.kola-form-button.elementor-size-lg {
    padding: 20px 40px;
    font-size: var(--e-global-typography-accent-font-size, 18px);
}

/* Button width */
.kola-form-button.elementor-button-block {
    display: block;
    width: 100%;
}

/* Hover effects */
.kola-form-button:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* Modal styles */
.kola-modal {
    display: none;
    position: fixed;
    z-index: 999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.kola-modal-content {
    position: relative;
    background-color: #fff;
    margin: auto;
    width: 100%;
    max-width: 1200px;
    height: 90vh;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.kola-close {
    position: absolute;
    right: 20px;
    top: 10px;
    color: #666;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1000;
    background: none;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.kola-close:hover {
    color: #333;
    background-color: rgba(0, 0, 0, 0.05);
}

#kolaFormIframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
}
