.custom-notification {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background-color: rgba(0, 0, 0, 0.95);
    border: 2px solid #0f0;
    border-radius: 10px;
    padding: 20px 30px;
    z-index: 10000;
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.custom-notification.show {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.notification-content {
    color: #0f0;
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    text-align: center;
    text-shadow: 0 0 5px #0f0;
}

.custom-confirm {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.custom-confirm.show {
    display: flex;
}

.confirm-content {
    background-color: #000;
    border: 3px solid #0f0;
    border-radius: 10px;
    padding: 30px;
    max-width: 500px;
    box-shadow: 0 0 40px rgba(0, 255, 0, 0.6);
    animation: confirmPop 0.3s ease;
}

@keyframes confirmPop {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.confirm-content p {
    color: #0f0;
    font-family: 'Courier New', monospace;
    font-size: 1.2rem;
    text-align: center;
    margin: 0 0 20px 0;
    text-shadow: 0 0 5px #0f0;
}

.confirm-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.confirm-btn {
    padding: 10px 30px;
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    font-weight: bold;
    border: 2px solid #0f0;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.confirm-yes {
    background-color: #0f0;
    color: #000;
}

.confirm-yes:hover {
    background-color: #00ff00;
    box-shadow: 0 0 15px #0f0;
    transform: scale(1.05);
}

.confirm-no {
    background-color: transparent;
    color: #0f0;
}

.confirm-no:hover {
    background-color: rgba(0, 255, 0, 0.1);
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.3);
    transform: scale(1.05);
}

