@import url('bootstrap/bootstrap-icons.min.css');

:root {
    --app-padding: 16px;
    --app-margin: 16px;
    --min-height: 7vh;
    --content-height: 100vh;
    --nav-height: 0vh;
    --tabbar-height: 0vh;
    --footer-height: 0vh;
}
body {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    overscroll-behavior: none;
}
body::-webkit-scrollbar {
    display: none;
}

.table-hover tbody tr:hover {
    cursor: pointer;
}

.fab-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    user-select: none;
    position: absolute;
    bottom: 30px;
    right: 30px;
}

    .fab-container:hover {
        height: 100%;
    }

        .fab-container:hover .sub-button:nth-child(2) {
            transform: translateY(-80px);
        }

        .fab-container:hover .sub-button:nth-child(3) {
            transform: translateY(-140px);
        }

        .fab-container:hover .sub-button:nth-child(4) {
            transform: translateY(-200px);
        }

        .fab-container:hover .sub-button:nth-child(5) {
            transform: translateY(-260px);
        }

        .fab-container:hover .sub-button:nth-child(6) {
            transform: translateY(-320px);
        }

    .fab-container .fab {
        position: relative;
        height: 70px;
        width: 70px;
        background-color: #4ba2ff;
        border-radius: 50%;
        z-index: 2;
    }

        .fab-container .fab::before {
            content: " ";
            position: absolute;
            bottom: 0;
            right: 0;
            height: 35px;
            width: 35px;
            background-color: inherit;
            border-radius: 0 0 10px 0;
            z-index: -1;
        }

        .fab-container .fab .fab-content {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100%;
            width: 100%;
            border-radius: 50%;
        }

            .fab-container .fab .fab-content .material-icons {
                color: white;
                font-size: 48px;
            }

    .fab-container .sub-button {
        position: absolute;
        display: flex;
        align-items: center;
        justify-content: center;
        bottom: 10px;
        right: 10px;
        height: 50px;
        width: 50px;
        background-color: #4ba2ff;
        border-radius: 50%;
        transition: all 0.3s ease;
    }

        .fab-container .sub-button:hover {
            cursor: pointer;
        }

        .fab-container .sub-button .material-icons {
            color: white;
            padding-top: 6px;
        }
