.form-container {
    background-color: #fff;
    height: inherit;
    margin: 5px 15px;
    padding: 5px;
    border-radius: 10px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.upload {
    position: relative;
    text-decoration: none;
    cursor: pointer;
    display: inline-block;
    zoom: 1;
    padding: 15px;
}
.upload > input {
    position: absolute;
    width: 60px;
    height: 70px;
    right: 0;
    top: 0;
    opacity: 0;
    cursor: pointer;
}

input::-webkit-input-placeholder {
    font-size: 18px;
    line-height: 3;
}

textarea::-webkit-input-placeholder {
    font-size: 18px;
}

.input-box {
    display: flex;
    justify-content: center;
    border: 0;
    width: 80%;
    height: auto;
    font-size: 1.4rem;
}

.input-box.timebar {
    display: inline-block;
}

.input-bar {
    border: none;
    border-bottom: 2px solid #9b9b9b;
    outline: none;
    width: 70%;
    min-height: 42px;
    max-height: 200px;
    resize: vertical;
    margin-left: 5px;
    text-overflow: ellipsis;
    padding: 10px;
    font-size: 16px;
}
textarea.input-bar {
    height: 100px;
}

#input-date,
#input-time {
    text-align: center;
    width: 60%;
    margin: 0 20%;
}

.meeting-file {
    font-size: 40px;
    color: #373737;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 30px;
    /* height: 180px; */
    /* height: 100%; */
}

label {
    display: inline-block;
    font-size: 30px;
    margin: 15px;
}

ul {
    padding: 0;
}

.dropbtn {
    background-color: white;
    color: #6a6a6a;
    border: none;
    /* border: #9b9b9b solid 1px; */
    border-radius: 10px;
    padding: 5px;
    font-size: 16px;
    text-align: center;
    width: 40px;
    cursor: pointer;
    transition: 0.3s;
}
.dropbtn:hover {
    background-color: #ddd;
}

.dropdown {
    position: relative;
    display: inline-block;
    margin: 5px;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-content li {
    position: relative;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    font-size: 14px;
    display: block;
    min-height: 43px;
}

p[class^='li-'] {
    text-align: start;
    width: 100px;
    overflow: hidden;
}
.li-title,
p[class='li-title'] {
    width: 300px;
}
.dropdown-content li:hover {
    cursor: pointer;
    background-color: #ddd;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn {
    background-color: #ddd;
    cursor: pointer;
}

label[class^='upload-'] {
    display: block;
    font-size: 16px;
}

#attachFilesName {
    max-height: 200px;
    overflow-y: auto;
}

.delete {
    position: absolute;
    right: 0;
    top: 0;
    padding: 12px 16px 12px 16px;
}

.delete:hover {
    background-color: #f44336;
    color: white;
}
