.ags-build-button {
    background-color: #000000 !important;
    color: #ffffff !important;
    width: 100%;
    margin-top: 15px;
    padding: 15px !important;
    font-size: 16px !important;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.ags-build-button:hover {
    background-color: #333333 !important;
    transform: translateY(-2px);
}

/* OVERLAY STYLES */
.ags-overlay-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999999;
    background-color: #ffffff;
}

.ags-overlay-container.active {
    display: block;
}

.ags-builder-iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    position: relative;
    z-index: 2;
    background: transparent;
}

.ags-overlay-loader-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.ags-overlay-logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
    animation: agsPulse 1.5s infinite ease-in-out;
}

.ags-overlay-text {
    font-family: sans-serif;
    color: #666;
    font-size: 14px;
    font-weight: 500;
}

@keyframes agsPulse {
    0% { opacity: 0.6; transform: scale(0.98); }
    50% { opacity: 1; transform: scale(1.02); }
    100% { opacity: 0.6; transform: scale(0.98); }
}