﻿/* Style the horizontal tab */
.tab-horizontal, .tab-inner-horizontal, .tab-horizontal-small {
    overflow: hidden;
    border: 1px solid #ccc;
    background-color: #f1f1f1;
}

    /* Style the buttons inside the horizontal tab */
    .tab-horizontal button, .tab-inner-horizontal button, .tab-horizontal-small button {
        background-color: inherit;
        float: left;
        border: none;
        outline: none;
        cursor: pointer;
        padding: 14px 16px;
        transition: 0.3s;
        font-size: 17px;
        border-radius: 5px;
        margin-left: 1px;
    }

        /* Change background color of horizontal tab buttons on hover */
        .tab-horizontal button:hover, .tab-inner-horizontal button:hover, .tab-horizontal-small button:hover {
            background-color: #ddd;
        }

        /* Create an active/current tablink-horizontal class */
        .tab-horizontal button.active, .tab-inner-horizontal button:active {
            background-color: #ccc;
        }

.tab-horizontal-small button {
    background-color: #ccc;
    border-left: 1px solid darkgray;
    border-top: 1px solid darkgray;
    border-right: 1px solid darkgray;
    border-bottom: none;
    padding: 10px 12px;
    font-size: 14px;
}

    .tab-horizontal-small button.active {
        background-color: white;
    }

/* Style the horizontal tab content */
.tabcontent-horizontal, .tabcontent-inner-horizontal {
    display: none;
    padding: 3px;
    /*border: 1px solid #ccc;*/
    border-top: none;
}

/* Style the vertical tab */
.tab-vertical {
    float: left;
    width: 30%;
    height: 420px;
    margin-top: 3px;
    margin-left: 3px;
    border: 1px solid lightgray;
    border-radius: 5px;
    box-shadow: 0px 2px lightgray;
    overflow-y: auto;
}

    .tab-vertical::-webkit-scrollbar-track {
        background-color: none;
    }

    .tab-vertical::-webkit-scrollbar-thumb {
        background-color: blue;
        border-radius: 5px;
        border: 0;
    }

    /* Style the buttons inside the vertical tab */
    .tab-vertical button {
        display: block;
        background-color: inherit;
        color: black;
        width: 100%;
        border: none;
        outline: none;
        text-align: left;
        cursor: pointer;
        transition: 0.3s;
        font-size: 10pt;
    }

        /* Change background color of vertical tab buttons on hover */
        .tab-vertical button:hover {
            background-color: #ddd;
        }

        /* Create an active/current vertical tab button class */
        .tab-vertical button.active {
            background-color: #ccc;
        }

/* Style the vertical tab content */
.tabcontent-vertical {
    display: none;
    float: left;
    width: 67%;
    height: 420px;
    margin-top: 3px;
    padding: 10px 20px;
    font-size: 12pt;
    border-left: none;
    border: 1px solid lightgray;
    border-radius: 5px;
    box-shadow: 1px 2px lightgray;
    overflow-y: auto;
}

.tablinks-vertical {
    border-bottom: 1px solid lightgray;
}
