.fileView-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 92%;
}

.fileView-flex{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50%;
}

.fileView-flex .error-404{
    display: inline;
    font-size: 150px;
    line-height: 150px;
    margin:0;
    color: var(--notification-close-bg);
    font-weight: bold;
}

.fileView-text {
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
}

.fileView-text h3{
    font-weight: lighter;
    text-align: center;
    color: var(--main-text-color);
}

.main-fv-container{
    width: 100%;
    height: 92%;
    /* border: 1px solid red; */
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.left-fv-container{
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 15%;
    height: 100%;
    background-color: var(--second-bg-color);
    padding: 10px;
    /* border: 1px solid green; */
    box-shadow: rgba(50, 50, 105, 0.15) 0px 2px 5px 0px, rgba(0, 0, 0, 0.05) 0px 1px 1px 0px;
}

.middle-fv-container{
    width: 55%;
    height: 100%;
    background-color: var(--main-bg-color);
    /* border: 1px solid blue; */
    box-shadow: rgba(50, 50, 105, 0.15) 0px 2px 5px 0px, rgba(0, 0, 0, 0.05) 0px 1px 1px 0px;
    overflow-y: auto;
}

.right-fv-container{
    width: 30%;
    height: 100%;
    background-color: var(--second-bg-color);
    /* border: 1px solid yellow; */
    box-shadow: rgba(50, 50, 105, 0.15) 0px 2px 5px 0px, rgba(0, 0, 0, 0.05) 0px 1px 1px 0px;
}

.right-fv-container ul {
    text-decoration: none;
    list-style-type: none;
    list-style: none;
    margin-top: 40px;
}

.right-fv-container ul li {
    line-height: 28px;
}

.fv-button-list {
    text-decoration: none;
    list-style-type: none;
    list-style: none;
    margin-top: 40px;
}

.fv-button-list li{
    width: 100%;
    height: 30px;
    box-shadow: rgba(50, 50, 105, 0.15) 0px 2px 5px 0px, rgba(0, 0, 0, 0.05) 0px 1px 1px 0px;
    color: var(--main-text-color);
    background-color: rgb(233, 233, 233);
    text-decoration: none;
    list-style-type: none;
    list-style: none;
    /* border: 1px solid red; */
    border-radius: 6px;
    padding: 5px;
    text-align: center;
    vertical-align: middle;
    margin-bottom: 14px;;
}

.fv-button-list li button{
    border: none;
    background: none;
}

.fv-button-list li:hover{
    background-color: rgb(226, 226, 226);
    cursor: pointer;
}

#meta-list{
    margin: 10px;
}

#meta-list li{
    margin: 20px 6px;
}

#column-table{
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 14px;
    text-align: left;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
    border: #646464;
}

#column-table thead th {
    background-color: #e6e6e6;
    color: var(--main-text-color);
    position: sticky;
}

/* Table body styling */
#column-table tbody tr {
    border-bottom: 1px solid #dddddd;
    line-height: 10px;
}

/* #column-table tbody tr:nth-of-type(even) {
    background-color: var(--main-button-color);
}

#column-table tbody tr:nth-of-type(odd) {
    background-color: var(--main-bg-color);
} */

#column-table tbody tr:hover {
    background-color: var(--main-bg-color);
}

/* Cell padding */
#column-table td, th {

}

/* Clickable column title styling */
/* #column-table td:first-child {
    color: var(--main-text-color);
    font-weight: bold;
    cursor: pointer;
    text-decoration: underline;
}

#column-table td:first-child:hover {
    color: var(--main-text-color);
} */