.agz-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s ease-in-out;
}

.agz-overlay.show {
    opacity: 1;
    pointer-events: auto;
}

.agz-overlay[hidden] {
    display: none !important;
}

.agz-modal {
    background: #fff;
    max-width: 1100px;
    width: 95%;
    max-height: 90vh;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}

.agz-modal__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #e5e5e5;
    background: #f8f9fa;
}

.agz-modal__body {
    height: 70vh;
}

.agz-close {
    border: none;
    background: transparent;
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
}
