/* Styles for the alert modal */
.alert-modal-container {
    text-align: center;
    padding: 10px;
}

.alert-title {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.5em;
}

.alert-message {
    margin-bottom: 20px;
    color: #555;
    font-size: 1.1em;
    line-height: 1.4;
    white-space: pre-line; /* Preserves line breaks in the message */
}

.alert-button-container {
    margin-top: 20px;
}

.alert-button-container button {
    min-width: 100px;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

/* Animation for the modal */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

#dvAlertModal.show {
    display: block;
    animation: fadeIn 0.3s;
}

/* Make sure the modal content is centered and has a fixed width for alerts */
#dvAlertModal .dvModal-content {
    width: 400px;
    max-width: 90%;
    margin: 15% auto;
}