/* Gang Sheet Builder - WordPress Modal Styles */

.gsb-button-wrapper {
    margin-top: 10px;
}

.gsb-open-builder {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #38bdf8;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    width: 100%;
    justify-content: center;
}

.gsb-open-builder:hover {
    background: #0ea5e9;
}

.gsb-icon {
    font-size: 18px;
}

/* Modal Overlay */
.gsb-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gsb-modal-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.gsb-builder-iframe {
    width: 100%;
    height: 100%;
    border: none;
    background: #fff;
}
