.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}


.modal-content {
    background: rgb(255, 255, 255);
    border-radius: 1rem;
    padding: 1.5rem;
    max-width: 90%;
    width: 350px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    max-height: 90vh;
    overflow-y: auto;
}

.modal-overlay.show {
    display: flex;
}


.dark .modal-content {
    background: #1f2937;
    border: 1px solid rgba(255, 255, 255, 0.06);
}