﻿.gigw-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

    .gigw-modal[hidden] {
        display: none;
    }

.gigw-modal-content {
    background: #fff;
    max-width: 420px;
    width: 90%;
    padding: 20px;
    border-radius: 6px;
}

.gigw-modal-actions {
    margin-top: 20px;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.btn-primary {
    background: #005fcc;
    color: #fff;
    border: none;
    padding: 8px 14px;
}

.btn-secondary {
    background: #e0e0e0;
    border: none;
    padding: 8px 14px;
}

:focus {
    outline: 2px solid #005fcc;
}
