/* Add these styles to your existing CSS or an external stylesheet */
.overlay {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.alert-container {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 350px; /* Adjust the max-width as needed */
    padding: 20px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 18px;
    cursor: pointer;
}

h2 {
    font-size: 18px;
    margin: 0;
    color: #333;
    padding-bottom: 10px;
}

#alert-message {
    font-size: 16px;
    margin: 0;
    color: #555;
}

.ok-btn {
    background-color: #007AFF;
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
    margin-top: 15px;
}

.ok-btn:hover {
    background-color: #0056b3;
}
