#fullscreenPopup,
#editPopup,
#depositPopup {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-overlay {
    position: absolute;
    inset: 0;
    background-color: var(--main-background-color, #090f1e);
}

.popup-content {
    position: relative;
    background: white;
    color: black;
    padding: 30px 40px;
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
    animation: fadeIn 0.3s ease;
}

.popup-content h2 {
    margin-top: 0;
    text-align: center;
    color: black;
}

h5 {
    margin-top: 0;
    text-align: center;
    color: black;
    padding: 20px;
    font-weight: 900;
}

.popup-content input,
.popup-content select {
    background: #f5f5f5;
    border: 1px solid #ddd;
    color: #333;
    border-radius: 5px;
    padding: 10px;
}

.popup-content button[type="submit"] {
    background: linear-gradient(to bottom right,#0095ff,#0855c4);
    border: none;
    padding: 10px;
    border-radius: 5px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.popup-content button[type="submit"]:hover {
    background: #28a85c;
}

.popup-close {
    position: absolute;
    right: 15px;
    top: 10px;
    background: transparent;
    border: none;
    font-size: 20px;
    color: black;
    cursor: pointer;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.namepos {
    margin-top: 10px;
}

.list-item {
    cursor: pointer;
}