
.box {
    margin-top: 160px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 12px;
    flex-wrap: wrap;
    cursor: default;
    color: rgb(59, 59, 59);
    flex: 1;
    cursor: default;
    overflow-y: scroll;
    overflow-x: hidden;
    padding: 5px;
    flex-grow: 1;
    justify-content: stretch;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    color: var(--font-color);
    background-color: var(--body-background-color);
}
.dashboard-box {
    margin-top: 180px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 12px;
    cursor: default;
    color: rgb(59, 59, 59);
    flex: 1;
    cursor: default;
    overflow-x: scroll;    
    padding: 5px;
    /* box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.37); */
}

.card,.card-readonly {
    border-radius: 15px;
    /* height: 250px; */
    /* min-width: 210px; */
    display: flex;
    padding: 10px;
    flex-direction: column;
    border: 2px solid rgba(205, 205, 205, 0.704);
    /* box-shadow: 0px 0px 3px rgb(195, 195, 195); */
    transition: box-shadow ease-in-out 0.25s;
    background-color: rgb(30, 30, 30);
    flex: 1;
    /* max-width: 250px; */
    align-items: center;
    /* min-width: 250px; */
    height: fit-content;
}

.card:hover {
    box-shadow: 0px 0px 4px rgb(255, 255, 255);
    background: var(--hover-background-color) !important;
}
.card:hover .card-info {
    color: var(--font-hover-color) !important; 
}
.card:hover .card-title {
    color: var(--font-hover-color) !important; 
}
.card:hover .card-option-tooltip {
    color: var(--font-hover-color) !important; 
}

.dashboard-card {
    border-radius: 15px;
    /* height: 250px; */
    /* min-width: 210px; */
    display: flex;
    padding: 10px;
    flex-direction: column;
    border: 2px solid rgba(205, 205, 205, 0.704);
    /* box-shadow: 0px 0px 3px rgb(195, 195, 195); */
    transition: box-shadow ease-in-out 0.25s;
    background-color: transparent;
    max-width: 250px;
    align-items: center;
    align-content: center;
    min-height: fit-content;
    height: fit-content;
    
}.dashboard-card:hover {
    box-shadow: 0px 0px 4px rgb(255, 255, 255);
}
#review-card {
    border-radius: 15px;
    /* height: 250px; */
    /* min-width: 210px; */
    display: flex;
    padding: 10px;
    flex-direction: column;
    border: 2px solid rgba(205, 205, 205, 0.704);
    /* box-shadow: 0px 0px 3px rgb(195, 195, 195); */
    transition: box-shadow ease-in-out 0.25s;
    background-color: transparent;
    flex: 1;
    align-items: center;
    min-width: 200px;
    height: 275px;
}
.icons-card {
    border-radius: 15px;
    height: 200px;
    width: 175px;
    display: flex;
    padding: 10px;
    flex-direction: column;
    border: 2px solid rgba(205, 205, 205, 0.704);
    /* box-shadow: 0px 0px 3px rgb(195, 195, 195); */
    background-color: transparent;
    transition: box-shadow ease-in-out 0.25s;
    flex: 1;
    max-width: 300px;
    align-items: center;
    min-width: 200px;
}

.icons-card:hover {
    box-shadow: 0px 0px 4px rgb(255, 255, 255);
}
.card-image-box {
    align-items: center;
    height: 30%;
    max-height: 55px;
    text-align: center;
}

.card-image {
    height: 50px;
}
.card-title {
    text-align: center;
    align-content: center;
    height: fit-content;
    font-size: 20px;
    font-weight: bold;
    text-wrap: nowrap;
    overflow: hidden;
    min-height: 30px;
    max-width: 200px;
    text-overflow: ellipsis;
    color: var(--font-color);
}
.card-icons-title {
    text-align: center;
    align-content: center;
    height: fit-content;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--font-color);
}
.card-info {
    text-align: center;
    text-wrap: nowrap;
    align-content: center;
    height: 20px;
    max-width: 175px;
    max-height: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--font-color);
}
.card-options {
    min-height: 100px;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
}
.card-icons-options {
    height: 25%;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}
.card-option-block {
    display: flex;
    flex-direction: column;
    height: fit-content;
    align-items: center;
}
.card-option {
    background-color: transparent;
    border: 0px;
    padding: 3px;
    border-radius: 20%;
    cursor: pointer;
    transition: box-shadow ease-in-out 0.25s;
    height: 50px;
    max-width: 50px;
}
.card-option:hover {
    box-shadow: 0px 0px 5px white; 
}
.card-icon {
    max-height: 50px;
    max-width: 50px;
}
.card-option-tooltip {
    margin-top: 5px;
    font-weight: bold;
    font-size: 14px;

    white-space: nowrap;
    
    color: rgba(255, 255, 255, 0.618);
    font-weight: bold;
    /* bottom: -28px; */
    cursor: default;
}

.box-main {
    margin-top: 160px;
    gap: 12px;
    cursor: default;
    color: white;
    flex: 1;
    cursor: default;
    overflow-y: scroll;
    
    padding: 5px;
    /* box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.37); */

    /* display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
    grid-auto-flow: row; */
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;

    position: absolute;
    top: 15px;
    right: 5px;
    left: 5px;
    bottom: 10px;
    background-color: var(--body-background-color);
}
.box-main-row {
    min-width: 50%;
    max-height: 45%;
    display: flex;
    flex-direction: row;
    gap: 5px;
    flex: 1;
    min-height: 200px;
}
.menu-card {
    border-radius: 15px;
    /* width: 300px; */
    display: flex;
    padding: 10px;
    flex-direction: column;
    justify-content: space-evenly;
    border: 2px solid rgba(205, 205, 205, 0.704);
    /* box-shadow: 0px 0px 3px rgb(195, 195, 195); */
    background-color: var(--control-background-color); 
    align-items: center;
    transition: box-shadow ease-in-out 0.25s;
    flex: 1;
}
.menu-card:hover {
    box-shadow: 0px 0px 4px rgb(255, 255, 255);
    cursor: pointer;
    background: var(--header-background-color) !important;

}
.menu-card:hover .menu-card-title {
    color: var(--font-hover-color);
}
.menu-card-icon {
    display: flex;
    flex-direction: row;
    justify-content: center;
}
.menu-card-image {
    width: 100px;
    height: 100px;
}
.menu-card-title {
    color: var(--font-color);
    align-items: center;
    text-align: center;
    font-size: 150%;
    font-weight: bold;
}
#files-page-box {
    max-height: 32%
}
#menu-card-blank {
    border: 0px;
    box-shadow: 0px;
    cursor: default;
}
#menu-card-blank:hover {
    box-shadow: 0px 0px 0px rgb(0, 0, 0) inset;
}