﻿
body {
    font-family: 'Segoe UI Web Light', 'Segoe UI Light', 'Segoe WP Light', 'Segoe UI', 'Segoe WP', Tahoma, Arial, sans-serif
}

div[class^="embedContainer"] {
    /*min-width: 800px;*/
    height: 600px;
    /*width: 60%;*/
}

#dashboardContainer {
    height: 90vh;
}

@media only screen and (max-width: 1333.33px) {
    #embedContainer, #dashboardContainer {
        height: calc(0.5625 * 870px); /* 16:9 aspect ratio */
    }
}

#buttonsWrapper {
    width: 100%;
    text-align: center;
    padding-top: 50px;
}

a:hover, a:visited, a:link, a:active {
    text-decoration: none;
    cursor: pointer;
}

#buttonsWrapper a {
    background-color: rgb(36, 169, 225);
    border: none;
    color: white;
    padding: 5px 30px;
    margin: 5px;
    width: 200px;
    height: 30px;
    display: inline-block;
    text-align: center;
    line-height: 30px;
}

    #buttonsWrapper a:hover {
        font-size: 120%;
    }

#tileContainer {
    height: 90vh;
}

.infoBox {
    margin-top: 30px;
}

iframe {
    border: none;
}

/* TABS */

.gtabs {
    position: relative;
}

    .gtabs .gtab {
        background: #eee;
        position: absolute;
        width: 100%;
        opacity: 0;
        visibility: hidden;
        padding: 10px;
        top: 5px;
        transition: all 0.4s;
    }

        .gtabs .gtab.active {
            opacity: 1;
            visibility: visible;
            top: 0;
            transition: all 0.4s;
        }

.btn-pbi {
    padding: 8px 14px;
    border: solid 2px #ea6852;
    color: #54565a;
    font-size: 14px;
    background: transparent;
    transition: 0.2s;
    text-decoration: none;
    margin: 5px;
    cursor: pointer;
}
    .btn-pbi:hover, .btn-pbi.active {
        background-color: #ea6852;
        color: #fff;
        text-decoration: none;
    }

table.dataTable td {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
table.dataTable td:nth-child(3) {
    max-width: 200px;
}