.alert-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.alert-box {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 300px;
    max-width: 90%;
    text-align: center;
}

.alert-box h2 {
    margin-top: 0;
    font-size: 24px;
}

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

.close-btn {
    margin-top: 20px;
    padding: 10px 20px;
    background: #5a7a1a; /* Green background */
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.close-btn:hover {
    background: #3d5610; /* Darker green background on hover */
}

.red-text {
    color: red;
}