/* -------------------------------------------------------------- */
/* Navbar                                                         */
/* -------------------------------------------------------------- */
.navbar-light .navbar-brand {
    color: #ffffff;
}
.navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus {
    color: #f5b01b;
}

/* -------------------------------------------------------------- */
/* Add sorting icons to GridView sort links                       */
/* -------------------------------------------------------------- */
a.asc:after, a.desc:after {
    position: relative;
    top: 1px;
    display: inline-block;
    font-family: 'Glyphicons Halflings';
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    padding-left: 5px;
}
 
a.asc:after {
    content: /*"\e113"*/ "\e151";
}
 
a.desc:after {
    content: /*"\e114"*/ "\e152";
}
 
.sort-numerical a.asc:after {
    content: "\e153";
}
 
.sort-numerical a.desc:after {
    content: "\e154";
}
 
.sort-ordinal a.asc:after {
    content: "\e155";
}
 
.sort-ordinal a.desc:after {
    content: "\e156";
}
 
.grid-view th {
    white-space: nowrap;
}

/* ---End Sort Icons --------------------------------------------- */

/* -------------------------------------------------------------- */
/* Home                                                           */
/* -------------------------------------------------------------- */
/* -- Index home page styling --------------------- */
.home-card-container {
    display: flex;
    justify-content: center;
    gap: 1em;
    flex-wrap: wrap;
}

.card-more-info-btn {
    display: flex;
    margin-left: auto;
    margin-top: auto;
}

.index-card-body-container {
    display: flex;
    flex-direction: column;
}
/* -- End of Index home page styling ------------------------ */

/* -------------------------------------------------------------- */
/* Site Index                                                     */
/* -------------------------------------------------------------- */
/* -- Site index styling -- */
.sign-up-cards-container {
    display: flex;
    gap: 1em;
    justify-content: center;
}
/* -- End index styling -- */

/* Course view styling */
.course-overview-container {
    border-radius: 0.5em;
    height: 15em;
    color: white;
    padding: 10px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.course-overview-container {
    text-shadow: 1px 1px 10px grey;
}

.settings-modal {
    text-shadow: none;
    color: black;
}

/* End of Course view styling */

/* -------------------------------------------------------------- */
/* Team                                                           */
/* -------------------------------------------------------------- */
/* Team view styling */
.team-dashboard {
    width: 100%;
    height: 300px;
    display: flex;
    flex-direction: column;
    background-color: rgb(200, 122, 200);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 10px;
    padding: 20px;
    color: white;
}

.team-banner {
    display: flex;
    width: 150px;
    height: 150px;
    overflow: hidden;
    justify-content: left;
}

.team-dashboard-content {
    display: flex;
    align-items: top;
}

.team-info {
    margin-left: auto;
}
/* End of team view styling */

/* -------------------------------------------------------------- */
/* Help                                                           */
/* -------------------------------------------------------------- */
/* Help Labels (usage: class="control-label help") */
label.help {
    border-bottom: 1px dashed #6c757d;
    cursor: help;
}

label.help:after {
    position: relative;
    top: 1px;
    display: inline-block;
    font-family: 'Glyphicons Halflings';
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    padding-left: 5px;
    content: "\e085"; /* question */
    content: "\e086"; /* info */
}