/* General overlay for the alert */
.alert-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* Alert box styles */
.alert-box {
    background-color: white;
    padding: 20px;
    width: 90%;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    position: relative;
    font-family: Arial, sans-serif;
}

.alert-box h2 {
    margin: 0 0 10px;
    font-size: 24px;
    color: #333;
}

.alert-box p {
    margin: 0 0 20px;
    font-size: 16px;
    color: #555;
}

.alert-box .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 18px;
    color: #999;
    cursor: pointer;
}

.alert-box .close-btn:hover {
    color: #333;
}

.alert-box .confirm-btn {
    background-color: #00823F;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
}

.alert-box .confirm-btn:hover {
    background-color: #04b358;
}