.modal-dialog {
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    width: fit-content;
}

.flex-container {
    display: flex;
    border-radius: 1em;
    padding: 1em;
    font-family: 'Robot', sans-serif;
    flex-direction: column;
    width: inherit;
    flex-wrap: wrap;
}

.flex-container img {
    height: 60px;
    /*width: 60px;*/
    object-fit: cover;
}

.flex-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.flex-wrap {
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    padding-right: 10px;
}

#close-dialog {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 20px;
}