/* Center the modal content */
.modal-content {
    border-radius: 10px; /* Rounded corners */
    border: 1px solid #ad1739; /* Border color */
}

/* Style the modal header */
.modal-header {
    background-color: #ad1739; /* Header background color */
    color: white; /* Header text color */
    border-bottom: none; /* Remove bottom border */
}

/* Style the modal title */
.modal-title {
    font-size: 1.5rem; /* Increase font size */
    font-weight: bold; /* Make title bold */
}

/* Style the modal body */
.modal-body {
    font-size: 1rem; /* Font size for the body text */
}

/* Style the buttons */
.btn {
    font-weight: bold; /* Bold text on buttons */
}

.close{
    display: none;
}

/* Style the close button */
.close {
    color: #ad1739; /* Close button color */
}

.btn-primary {
    background-color: #ad1739; /* Primary button color */
    border-color: #ad1739; /* Border color for primary button */
}

/* Button hover effects */
.btn-primary:hover {
    background-color: #830f2a; /* Darker shade for primary button on hover */
}

.btn-secondary:hover {
    background-color: #413b3b; /* Darker shade for secondary button on hover */
}