/* People specific styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    /* Simple backdrop */
    backdrop-filter: blur(2px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.hidden {
    display: none !important;
}

/* Extend existing modal-content inside overlay if needed, or it works as is */
.modal-overlay .modal-content {
    /* Reuse modal-content styling but ensure it centers nicely */
    background: #fff;
    border-radius: var(--radius-md, 8px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    padding: 24px;
    width: 100%;
    max-width: 500px;
    position: relative;
}