.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000000db;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-self: stretch;
    overflow-y: scroll;
}


.modal .modal-content {
    width: 85%;
    max-width: 900px;
    display: flex;    
    align-self: center;
    flex-direction: column;
    gap: 1rem;
    margin: 20px;
    padding: 2rem 1rem;
    background-color: white;
    border-radius: 14px;

}

.modal input {
    height: 3rem;
}

.modal .button, .modal .buttons {
    align-self: flex-end;
    text-align: right;
    margin-top: 0.5rem;
}

.modal .buttons-row {
    display: flex;
    justify-content: space-between;

}

.modal img {
    height: 2rem;
    margin: -8px -4px;
}
