.modal-header {
    height: fit-content;
    width: 100%;
    position: relative;
    display: flex;
    float: right;
    align-items: right;
    justify-content: space-between;
    font-size: large;
    padding: 15px 0;
    /* border-bottom-style: dotted; */
}

.modal-dialog {
    border-radius: 10px;
    background: #F1F1F1;
    padding: 15px 20px;
}

.modal-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 1px solid lightgray;
    background: rgba(53, 53, 53, 0.418);
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon:hover {
    color: rgb(151, 20, 20) !important;
    cursor: pointer;
}

.save-modal-info {
    padding: 5px 10px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    border-radius: 3px;
    border: 0.5px solid black;
    background-color: black;
    color: white;
}

.save-modal-info:disabled {
    background-color: white;
    color: rgb(88, 88, 88);
    border: 0.5px solid rgb(88, 88, 88);
}

.save-modal-info:not([disabled]):hover {
    cursor: pointer;
    background-color: rgb(105, 105, 105);
    color: white;
}

.ModalHeader {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.ModalBody {
    font-size: 16px;
    margin-bottom: 20px;
}

.edit-icon:hover {
    cursor: pointer;
    color: rgb(13, 100, 230);
}