
/* Notification box styles */
.notification-box {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    max-width: 600px;
    min-width: 400px;
    padding: 30px 15px;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    background-color: #fff;
    text-align: center;
}

.notification-content {
    position: relative;
    padding: 20px;
}

.notification-content strong {
    font-size: 20px;
}

.notification-content p {
    margin: 0;
    font-size: 16px;
}

.notification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}
