.modal-background {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);

    display: flex;
    justify-content: space-around;
    align-items: center;

    opacity: 0;
    visibility: hidden;
    transition: visibility 0s, opacity 0.3s;
}
.background-active {
    visibility: visible;
    opacity: 1;
}

.modal-content {
    width: 50%;
    height: 80%;
    background-color: white;
    border-radius: 10px;
    box-shadow: 3px 3px #888888;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    position: relative;
    overflow-y: auto;
}

.modal-content.preview {
    font-size: 24px;
    text-align: left;
}

.modify {
    width: 80%;
    height: 96%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

#minuteTextArea {
    max-width: 96%;
    max-height: 90%;
    overflow-y: auto;
    margin-top: 5%;
}
#modal-ct-preview {
    width: 70%;
    height: 90%;
}

#form-search > label {
    font-size: 30px;
    padding: 10px;
}

.date {
    display: flex;
    margin: 20px;
}

.close {
    position: absolute;
    top: 0;
    right: 14px;
    font-size: 40px;
    cursor: pointer;
    transform: rotate(45deg);
}

#date-slider {
    width: 100%;
    margin: 20px;
}

.ui-state-default {
    border-radius: 50%;
}

.row {
    width: 280px;
    /* margin-bottom: 10px; */
    /* background: #c8c8c8; */
    /* border-bottom: 1px dashed #333; */
    list-style: none;
    padding: 5px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.row i {
    font-size: 16px;
}

.file-content {
    width: 100%;
    margin-left: 5px;
}

.upload-area {
    max-height: 150px;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 10px;
}

.del {
    padding: 10px;
}
.del:hover {
    cursor: pointer;
    background-color: #f44336;
    color: white;
}
