﻿:root {
    --smart-primary: #6200EE;
}
body {
    margin: 0px;
    padding: 0px;
    height: 100vh;
}

smart-splitter {
    width: 100%;
    height: 100%;
}

.dashboard-header {
    box-shadow: -3px 1px 9px #6e6464;
    background-color: var(--smart-primary);
    padding: 10px;
    color: white;
    font-size: 20px;
    height: 65px;
}

#rightPanel {
    background-color: #FAFAFA;
}

    #rightPanel .dashboard-header {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

.dashboard-header smart-button {
    width: 46px;
    height: 46px;
}

#dashboard #leftPanel .dashboard-header {
    box-shadow: 3px 1px 9px #6e6464;
}

#dashboard[expanded] #leftPanel .dashboard-header {
    box-shadow: none;
    background-color: white;
}

smart-splitter smart-splitter-item > .smart-container > .smart-content {
    overflow: hidden;
}

.dashboard-menu-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-right: 1px solid lightgray;
    border-top: 1px solid lightgray;
    padding-top:5px;
}

#leftPanel .menu-btn {
    width: 240px;
    height: 46px;
}

    #leftPanel .menu-btn .material-icons {
        margin-right: 30px;
    }

.menu-btn .smart-container {
    display: flex;
    align-content: center;
    align-items: center;
    flex-direction: row;
}

.menu-btn .smart-container {
    display: flex;
    align-content: center;
    align-items: center;
    flex-direction: row;
}


.menu-btn {
    width: 240px;
}

h1 {
    margin-top: 40px;
    margin-left: calc(1% + 10px);
}

h6 {
    padding-top: 20px;
    border-top: 1px solid lightgray;
    font-size: 14px;
    color: gray;
    text-align: center;
    width: 240px;
    font-weight: 200;
    margin-top:10px;
    margin-bottom:20px;
}

#expandBtn,
#collapseBtn,
#notifficationBtn {
    opacity: 1;
    background-color: transparent;
    color: white;
    border-width: 0px;
    position: relative;
    font-size: 22px;
    box-shadow: none;
}

    #expandBtn[hover],
    #collapseBtn[hover],
    #notifficationBtn[hover] {
        opacity: 1;
        background-color: rgba(0, 0, 0, 0.1);
    }

    #notifficationBtn::after {
        content: '4';
        position: absolute;
        right: 4px;
        top: 4px;
        width: 17px;
        height: 17px;
        font-size: 11px;
        background-color: #E10050;
        display: flex;
        align-content: center;
        align-items: center;
        justify-content: center;
        color: white;
        border-radius: 50%;
        pointer-events: none;
    }

    #expandBtn .smart-button,
    #collapseBtn .smart-button,
    #notifficationBtn .smart-button {
        display: flex;
        align-content: center;
        justify-content: center;
    }

#expandBtn,
#collapseBtn,
#notifficationBtn {
    float: right;
}

    #expandBtn .material-icons,
    #collapseBtn .material-icons,
    #notifficationBtn .material-icons {
        font-size: 22px;
        display: flex;
        align-content: center;
        align-items: center;
        justify-content: center;
    }

#collapseBtn {
    color: gray;
    display: none;
}

#dashboard[expanded] #collapseBtn {
    display: block;
}

#dashboard[expanded] #expandBtn {
    display: none;
}

table {
    width: 98%;
    text-align: right;
    padding: 0px;
    box-shadow: 1px 3px 7px 0px #afafaf;
    margin-left: auto;
    margin-right: auto;
}

    table tr {
        margin: 0px;
        padding: 0px;
        height: 60px;
    }

    table th,
    table td {
        margin: 0px;
        padding: 15px;
        font-size: 12px;
        border-bottom: 1px solid lightgray;
    }

        table th:first-child,
        table td:first-child {
            text-align: left;
        }
