/* .database {
    display: flex;
    flex-direction: row;
    padding: 0 30px;
    margin: 100px 0 300px 0;
    height: 500px;
    gap: 20px;
}

.explorer {
    display: flex;
    flex-direction: row;
}

.fileObserver {
    width: 100%;
    height: 100%;
    background-color: rgb(36, 36, 36);
    border-radius: 5%;
}

.sideExplorer {
    display: flex;
    flex-direction: column;
    width: 350px;
    border-left: 1px solid white;
}

.file {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    padding: 5px 10px;
    cursor: pointer;
}

.file:hover {
    background-color: rgba(255, 255, 255, 0.204);
}

.headerExplorer {
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 30px;
}

.navFolder {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    font-size: 25px;
    height: 150px;
    width: 150px;
    background-color: rgb(36, 36, 36);
    border-radius: 10%;
    cursor: pointer;
    transition: 0.3s;
}

.navFolder:hover {
    background-color: rgba(255, 255, 255, 0.204);
    transform: translateX(15px);
}

.navFolder:hover ~ .line::after {
    width: 50px;
}

.active_navFolder {
    transform: translateX(15px);
    background-color: rgba(255, 255, 255, 0.204);
}

.navC {
    display: flex;
    flex-direction: row;
    gap: 15px;
    align-items: center;
}

.line {
    position: relative;
    width: 50px;
    height: 2px;
    z-index: -1;
    background-color: white;
}

.line::after {
    position: absolute;
    content: '';
    width: 0px;
    top: 0;
    left: 0;
    height: 2px;
    background-color: #ffc200;
    transition: 0.2s;
} */

.filesExplorer {
    margin-top: 60px;
}

.filesExplorer h2 {
    font-size: 36px;
    margin: 0 0 10px;
}

.file-view {
    position: relative;
    background-color: #0A1725;
    padding: 20px;
    border-radius: 10px;
    min-height: 500px;
}

.path {
    display: flex;
    flex-direction: row;
    margin-top: 20px;
    grid-column-start: 1;
    grid-column-end: 7;
}

._Spath {
    padding: 5px 10px;
    font-size: 15px;
}

._Spath:hover {
    background-color: rgba(255, 255, 255, 0.204);
    cursor: pointer;
}

._Spath_slash {
    padding: 5px 10px;
    font-size: 15px;
}

.files {
    display: flex;
    flex-direction: column;
    /* border-right: 1px solid #f1f1f1; */
    min-height: 100%;
    overflow-y: scroll;
    padding: 30px 0 30px 0;
}

.file {
    display: grid;
    flex-direction: row;
    align-items: center;
    grid-template-columns: 7fr 0.5fr;
    gap: 10px;
}

.fileIMC {
    position: relative;
}

.fileC {
    display: grid;
    flex-direction: row;
    align-items: center;
    grid-template-columns: 2fr 5fr;
    padding: 10px 5px;
    overflow: hidden;
}

.fileN {
    display: flex;
    flex-direction: row;
    gap: 15px;
    align-items: center;
    overflow: hidden;
}

.Ftext {
    width: 80%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.fileI {
    display: grid;
    flex-direction: row;
    align-items: center;
    grid-template-columns: 1fr 1fr 1fr;
    color: rgb(184, 184, 184);
}

.fileMenuBar {
    position: absolute;
    /* right: -15px; */
    left: -45px;
    top: -25px;
    background-color: #0A1725;
    border: 1px solid white;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10000;
}

.fileMenuBar div {
    padding: 10px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.fileMenuBar div:hover {
    background-color: rgba(255, 255, 255, 0.204);
}

.fileIM {
    padding: 10px 15px;
    border-radius: 50%;
    cursor: pointer;
}

.fileIM:hover {
    background-color: rgba(255, 255, 255, 0.204);
}

.fileIM_active {
    background-color: rgba(255, 255, 255, 0.204);
}

.fileC:hover {
    background-color: rgba(255, 255, 255, 0.204);
    cursor: pointer;
}

.explorer {
    position: relative;
    display: grid;
    flex-direction: row;

    /* grid-template-columns: 2fr 5fr;
    gap: 20px; */

    margin-top: 25px;
    height: 400px;
}

.progressBar {
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 4fr;
}

.pb-line {
    background: grey;
    height: 10px;
    border-radius: 30px;
}

.fi_k {
    font-size: 16px;
    color: #4383a6;
}
.fi_kp {
    display: inline-block;
    font-size: 14px;
    color: #d7e1e6;
}

.fi {
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #B0BEC5;
}

.fi-h {
    font-size: 22px;
    margin-bottom: 20px;
}

.fi_p {
    color: #d6dee1;
    text-decoration: underline;
}

.fi_p:hover {
    cursor: pointer;
}

.download {
    position: absolute;
    right: 20px;
    bottom: 0;
    font-size: 20px;
}

.download:hover {
    cursor: pointer;
}

.aboutFile {
    position: relative;

    overflow-y: scroll;
}

.fv-tabA {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    font-size: 17px;
    padding: 5px 15px;
    border-radius: 14px 0 0 0;
    background-color: #0A1725;
    cursor: pointer;
    z-index: 999;
    position: relative;
    top: 1px;
}

.fv-tabA:hover {
    background-color: rgba(255, 255, 255, 0.204);
}

.fv-tabA-before-triangle:hover ~ .fv-tabA {
    background-color: rgba(255, 255, 255, 0.204);
}

.fv-tabAC {
    display: flex;
    flex-direction: row;
    position: absolute;
    top: -35px;
    left: 200px;
    height: auto;
    user-select: none;
}

.fv-tabA-before-triangle {
    position: relative;
    top: 1px;
    border-left: 36px solid transparent;
    border-bottom: 35px solid #0A1725;
    cursor: pointer;
}

.fv-tabA-before-circle {
    width: 61px;
    height: 50px;
    border-radius: 50%;
    position: absolute;
    top: -17px;
    left: -24px;
    background-color: #0d1b2a;
}

.fvTcircle {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: orange;
    transition: 0.2s;
}

.fvTcircleA {
    background-color: #48494b;
}

.pb-createFile {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 20px;
    width: fit-content;
}

.pb-createFile .fa-plus {
    padding: 5px 10px;
}

.pb-createFile .fa-plus:hover {
    background-color: rgba(255, 255, 255, 0.204);
    cursor: pointer;
}

.pb-createFile-active {
    background-color: rgba(255, 255, 255, 0.204);
}

.creationMenuBar {
    position: absolute;
    right: -45px;
    top: -25px;
    background-color: #0A1725;
    border: 1px solid white;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10000;
    font-size: 15px;
}

.creationMenuBar div {
    padding: 10px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.creationMenuBar div:hover {
    background-color: rgba(255, 255, 255, 0.204);
}

.infoLabel {
    position: absolute;
    background-color: #12273d;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    white-space: nowrap;
    pointer-events: none;
    z-index: 10000;
}