﻿.alert-modal .modal-content {
    border-radius: 15px; /* Round the corners */
    background-color: #fff; /* Ensure the modal content is white */
    border: none; /* Remove default border */
    box-shadow: none; /* Remove default shadow if needed */
}

.alert-modal .modal-header {
    background-color: #7e95f7; /* Custom background color */
    color: white; /* Text color */
    border-top-left-radius: 15px; /* Round top left corner */
    border-top-right-radius: 15px; /* Round top right corner */
}

.alert-modal .modal-body {
    font-size: 16px; /* Adjusts the font size */
}

.alert-modal .modal-footer {
    background-color: #f8f9fa; /* Optional footer background color */
    border-bottom-left-radius: 15px; /* Round bottom left corner */
    border-bottom-right-radius: 15px; /* Round bottom right corner */
}

/* Optional: Remove padding from the modal to enhance appearance */
.alert-modal .modal {
    padding: 0; /* Adjust this if needed */
}
