.temp-modal {
    position: fixed;
    inset: 0;
    background-color: white; /* modal background */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;

    max-width: 500px;
    width: 100%; /* responsive width */
    min-height: 85vh;
    padding: 30px;
    border-radius: 12px; /* smooth corners */

    /* Box shadow instead of border */
    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.25),
        0 4px 6px rgba(0, 0, 0, 0.1);

    display: none; /* hidden by default */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow-y: auto;
    pointer-events: auto;
}

/* .temp-modal.active {
  display: flex;
} */

.temp-modal form {
    width: 100%;
}

.blur-overlay {
    position: fixed;
    inset: 0;
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.3);
    z-index: 666;
    pointer-events: auto;
}
