.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.modal {
    border-radius: 8px;
    position: relative;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.modal-content {
    background-color: white;
    padding: 1.5rem;
    border-radius: 0 0 10px 10px;
    padding-top: 5px;
}

.modal-close {
    position: absolute;
    top: -12px;
    right: -10px;
    background-color: #fff;
    border-radius: 50%;
    border: none;
    font-size: 1.0rem;
    cursor: pointer;
    padding: 5px 7px;
}

.modal-close:hover {
    color: #ffffff !important;
    background-color: #0a4b78 !important;
}

.modal-header {
    padding-top: 10px;
    background-color: #f1c40f;
    height: 40px;
    border-radius: 10px 10px 0 0;
}

.modal-header .title {
    font-size: 15pt;
    padding-top: 88px !important;
    color: #fff;
    padding-left: 20px;
    font-weight: bolder;
}