/*alert.css*/
.alertbody {
    font-family: Arial, sans-serif;
    /*background-color: #f0f0f0;*/
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.alert {
    margin: auto;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    min-width: 150px;
    max-width: 80%;
    text-align: center;
    color: #333;
}

.alert-header {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.alert-message {
    font-size: 16px;
}

.alert-button {
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 14px;
    margin-top: 15px;
    transition: background-color 0.3s ease;
}

.alert-button:hover {
    background-color: #0056b3;
}
