.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    text-align: center;
    background-color: rgba(0,0,0,0.6);
}

.modal-content {
    display: flex;
    flex-direction: column;
    background-color: #dddddd;
    margin: 0px 14px;
    max-width: 600px;
    padding: 10px;
    outline: auto;
    border: groove;
    position: relative;
}

@media only screen and (orientation: landscape) {
    .modal-content {
        margin-left: auto;
        margin-right: auto;
    }
}

#sharedModal{
    flex-direction: column;
}

.boycottSpacer{
    min-height: 60px;
    display: flex;
    flex-direction: column;
}

#deleteConfirmationHeader{
    min-height: 3em;font-size: 30px;align-content: center;
}

#modalInputs > *{
    margin: 5px;
}

.fileInputContainer{
    text-align: left;
}

.fileInputContainer > *:first-child{
    font-size: 20px;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background-color: #f8f8f8;
    border:groove;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

#modalInputs{
    flex-direction: column;
    display: flex;
}

#modalInputs input{
    display: block;
    width: -webkit-fill-available;
}
