/*
Index page - POL-11798
 */


header {
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
}
header img {
    display: block;
    margin:auto;
    max-width: 100%;
    height: 6.25rem;
}

body {
    background-color: #214E75;
    margin:0;
    font-family: 'Roboto','Helvetica','sans-serif';
}

#content_container {
    background-color: white;
    border-radius: 1rem;
    display: block;
    margin: 4rem auto 4rem auto;
    width: 75%;
    padding: 2rem;
    box-shadow: 0 0 0.75rem black;
}
/* On small screens, make the content_container use the full screen width */
@media (max-width: 400px) {
    #content_container {
        border-radius: 0;
        margin: 4rem 0 4rem 0;
        width: 100%;
        box-sizing: border-box;
    }
}


.index_content {
    width: 90%;
    display: block;
    margin: auto;
    text-align: center;
    padding: 0.5rem;
}
.index_content a, .index_content span {
    display: block;
    margin: 1rem 0px;
}
.index_content a {
    text-decoration: none;
    border-radius: 4px;
    box-shadow: 0px 2px 6px darkgrey;
    cursor: pointer;
    text-align: center;
    font-weight: bold;
    display: block;
    margin-left:auto;
    margin-right: auto;
    max-width: 85%;
}

#welcome a {
    color: white;
    padding: 0.75rem;
    background-color: #009ee8;
    /*width: 40%;*/
    width: 15.625rem;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
#welcome a:hover {
    background-color: #0076ae;
}

#sample_dashboards ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
#sample_dashboards ul a {
    background-color: #F37321;
    padding: 1rem;
    color: white;
    /*width: 40%;*/
    width: 15.625rem;
}
#sample_dashboards ul a:hover {
    background-color: #c4530a;
}