.custom-modal {
    width: fit-content;
    position: fixed;
    top: 50%;
    left: 50%;
    background-color: white;
    border-radius: 5px;
    border: solid #dfdfdf 1px;
    box-shadow: 2px 2px 5px #bfbfbf;
    padding-bottom: 5px;
    z-index: 120;
}

.custom-modal-header {
    padding: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.custom-modal-title {
    color: black;
    font-size: 0.9em;
    font-weight: bold;
    margin: 0px;
}

.custom-modal-title-button {
    color: black;
    font-size: 0.7em;
    cursor: pointer;
    margin-bottom: auto;
}

.custom-modal-body {
    padding: 5px;
    font-size: 0.8em;
    height: auto;
}

.custom-modal-footer {
    padding: 0px 5px;
    margin-top: auto;
}

@media (max-width: 600px) {
    .custom-modal {
        width: 100% !important;
        left: 0px !important;
        top: 10% !important;
        
    }
}