.modal-content {
    background-color: #ffffff;
    color: #000000;
    margin: 15% auto;
    padding: 5px 5px;
    max-width: 500px;
    width: 100%;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}
.modal-content.dark {
    background-color: #0c0c0d;
    color: #bcbcbf;
    border-radius: 10px;
    border-top: 1px solid #3a3b41;
    border-right: 1px solid #313237;
    border-bottom: 1px solid #313237;
    border-left: 1px solid #313237;
    margin: 15% auto;
    padding: 5px 5px;
    max-width: 500px;
    width: 100%;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.modal-header {
    display: flex;
    flex-shrink: 0;
    align-items: start;
    justify-content: space-between;
    padding: var(--bs-modal-header-padding);
    border-bottom: 0px solid #bdbdbd;
    width: 100%;
    padding: 0px 0px;
}    

.modal-header .modal-title {
    margin: 6px 0px 0px 10px;
    font-size: 1.1rem;

}

.modal-header .close {
    margin: 3px;
    border-radius: 25px;
    background: #ed7979;
    border: 1px solid transparent;
    color: #fff;
    min-width: 24px;
    min-height: 24px;
    max-width: 24px;
    max-height: 24px;
    width: 24px !important;
    height: 24px !important;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    flex-basis: 24px;
    flex-grow: 0;
}   


.modal-header .close i {
    font-size: 13px;
    line-height: 1;
    vertical-align: middle;
}


.modal-body{
    position: relative;
    flex: 1 1 auto;
    width: 100%;
    margin: 5px 0px;
    padding: 5px 5px;
}