/*body {
    font-family: Arial, sans-serif;
    margin: 0;
}
*/
.tableau-page {
    display: none;
}

/* Modal */
.modal {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
}

.modal-content {
    background: white;
    width: 500px;
    margin: 10% auto;
    padding: 20px;
    border-radius: 8px;
}

.modal-footer {
    margin-top: 20px;
    text-align: center;
}

button {
    padding: 10px 20px;
    margin: 5px;
    cursor: pointer;
}

#tableauContainer {
    width: 100%;
    height: 100vh;
}

.oha-da-heading {
    background-color: #7a8188; /* top grey */
}

.oha-data-nav {
    background-color: #5f666d; /* bottom darker grey */
}

.breadcrumb {
    font-size: 12px;
    color: #dcdcdc;
    padding: 20px 0;
    margin-bottom: 0;
}

.nav-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end; /* IMPORTANT */
}

.oha-tab-navigation {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.tab {
    padding: 12px 22px;
    border: none;
    font-weight: bold;
    cursor: pointer;
    background: #cfcfcf;
    color: #000;
    margin: 0;
}

    .tab.active {
        background: #5b4bc4;
        color: #fff;
    }

    .tab:not(.active) {
        background: #cfcfcf;
    }

.oha-data-navigation {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    /* padding-bottom: 10px; */
}

    .oha-data-navigation a {
        color: #fff;
        font-weight: 600;
        text-decoration: none;
    }

.cover-box {
    position: absolute;
    height: 60px;
    width: 337px;
    background-color: #222636;
    top: 0;
    right: 25px;
}

.cover-box img {
    padding: 10px 0px 0px 55px;
    height: 40px;
}

.cover-box-bottom {
    position: absolute;
    height: 23px;
    width: 248px;
    background-color: #fafafa;
    bottom: 2px;
    right: 196px;
    z-index: 40;
}

@media screen and (max-width: 660px) {
    .cover-box-bottom {
        position: absolute;
        height: 27px;
        width: 118px;
        background-color: #fafafa;
        bottom: 0;
        right: 80px;
        z-index: 40;
    }
}

/* *************************************
        * D&A Modal Terms and Conditions
        * ********************************** */
/* The Modal (background) */
.modal {
    font-family: 'Karla', sans-serif;
    font-size: 1em;
    position: fixed; /* Stay in place */
    z-index: 250; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
    border-radius: 10px;
}

/* Modal Content */
.modal-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    border: 1px solid #888;
    width: 80%;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s;
    padding: 60px 40px;
    font-family: 'Karla', sans-serif;
    font-size: .95em;
}

.modal-header {
    padding: 2px 0px;
    /*background-color: #5cb85c;*/
    color: #4E4A9E;
    border-bottom: 6px solid #65BC46;
    margin-bottom: 30px;
    font-family: 'Karla', sans-serif !important;
}

    .modal-header h2 {
        color: #4E4A9E;
    }

.modal-body {
    padding: 2px 0px;
}

.modal-footer {
    padding: 20px 0px 50px 0px;
    border-top: 6px solid #65BC46;
    margin: 30px 0px;
}

/* Buttons */
.button-group {
    margin-top: 20px;
}

button {
    padding: 10px 20px;
    margin-right: 0px;
    border: none;
    cursor: pointer;
}

#btnAccept {
    background-color: #4E4A9E;
    color: white;
}

    #btnAccept:disabled {
        background-color: #ccc;
        cursor: not-allowed;
    }

#btnCancel {
    background-color: #eee;
}

/* Animation */
@keyframes animatetop {
    from {
        transform: translateY(-50px);
        opacity: 0
    }

    to {
        transform: translateY(0);
        opacity: 1
    }
}

.tableau-visualization {
    min-height: 600px;
    position: relative;
    width: 100%;
    height: 100%;
}

