.modal {
    position: fixed;
    width: 20%;
    height: 130px;
    background-color: white;
    text-align: center;
    border-radius: 10px;
    top: 30%;
    left: 40%;
    box-shadow: 1px 1px 7px #fcfafa;
    display: none;
    z-index: 10;
    padding: 30px;
}

.modal-back {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.button {
    border: none;
    border-radius: 5px;
    width: 100px;
    height: 30px;
    font-size: 16px;
    margin: 5px;
    cursor: pointer;
    color: whitesmoke;
}

button:hover {
    box-shadow: 1px 1px 5px #86f68f;
}

.index-button {
    border: none;
    border-radius: 30px;
    width: 200px;
    height: 45px;
    font-size: 16px;
    margin: 5px;
    cursor: pointer;
}

.index-button:hover {
    box-shadow: 1px 1px 7px #86f68f;
    width: 201px;
}

.navbar-nav {
    margin-top: 0px;
    display: -webkit-flex;
    display: flex;
    list-style-type: none;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    padding: 10px;
}

.navbar-nav li {
    display: flex;
    margin: 5px;
}

.navbar-nav li a {
    text-decoration-line: none;
    color: lightgray;
    font-size: 16px;
}

.input {
    margin: 5px;
    height: 30px;
    outline: none;
    border: 1px solid #e5e5e5;
    display: inline-block;
}

.editor-menu {
    position: absolute;
    left: 100px;
    top: 300px;
    background-color: white;
    list-style-type: none;
    border: 1px solid #efebeb;
    width: auto;
    padding: 0px;
    text-align: left;
    display: none;
}

.editor-menu li {
    border: 1px solid #efebeb;
    margin: -1px;
    padding: 2px 20px 2px 20px;
    cursor: pointer;
}

.editor-menu li:hover {
    background-color: #3a50de;
    color: whitesmoke;
}

.table {
    border-collapse: collapse;
    text-align: center;
    min-width: 800px;
    max-width: 60%;
    overflow-x: auto;
}

.table-th {
    background: #0a1d4c;
    border: 1px solid #9798a7bf;
    font-size: 14px;
    color: white;
    line-height: 18px;
}

.table-td {
    border: 1px solid rgba(242, 242, 245, 0.75);
    min-width: 60px;
    font-size: 12px;
    /*font-weight: bold;*/
    line-height: 15px;
}
