.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9998;
    display: none;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(8px);
}

.modal-window {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 0 8px rgba(0, 187, 255, 0.3), 0 0 15px rgba(0, 187, 255, 0.2);
    max-width: 400px;
    width: 100%;
    text-align: center;
    color: #e0e0e0;
    position: relative;
    animation: neonGlow 1.5s infinite alternate;
}

@keyframes neonGlow {
    from {
        box-shadow: 0 0 8px rgba(0, 187, 255, 0.3), 0 0 15px rgba(0, 187, 255, 0.2);
    }
    to {
        box-shadow: 0 0 12px rgba(0, 187, 255, 0.5), 0 0 20px rgba(0, 187, 255, 0.3);
    }
}

.modal-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #00BBFF;
    text-shadow: 0 0 5px rgba(0, 187, 255, 0.6);
}

.modal-buttons {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

.modal-button {
    padding: 12px 25px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: box-shadow 0.3s ease;
    flex: 1;
    margin: 0 10px;
    color: #1a1a1a;
    background: #00BBFF;
    border: none;
    text-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 6px rgba(0, 187, 255, 0.4);
}

.modal-button:hover {
    box-shadow: 0 0 10px rgba(0, 187, 255, 0.6), 0 0 18px rgba(0, 187, 255, 0.3);
}

#delete-preloader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}
