/*
Style for UAI conference website.
*/

/* Define variable for the conference color */
:root {
    --conference-color: #DA1219;
    --conference-color-beta: black;
}

/* Main font */
body {
    font-family: "Roboto", sans-serif;
    font-size: 15px;
}

/* Change navbar background so that it follows the conference theme */
.navbar-brand {
    margin-left: 0px !important;
}
.navbar-uai-logo {
    background-color: var(--conference-color);
    height: 55px;
}
.navbar-uai-info {
    background-color: var(--conference-color-beta);
    color: white;
    font-family: "Open Sans", sans-serif;
    font-weight: 700;
    padding: 10px;
    font-size: 18px;
    height: 45px;
}
.navbar-container {
    padding: 0px;
}

/* Remove the radius from borders */
.list-group-item:first-child {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.list-group-item:last-child {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

/* Don't show different pointer on disabled items */
.list-group-item.disabled,
.list-group-item.disabled:focus,
.list-group-item.disabled:hover {
    cursor: default;
    background-color: var(--conference-color-beta);
    color: white; */
    font-weight: 200;
}

/* Add padding bottom the full logo */
.full-logo {
    padding-bottom: 20px;
}

/* Grey the last update */
.last-update {
    color: grey;
}

/* Details for location/time */
.navbar-details {
    color: white;
    background-color: var(--conference-color-beta);
    font-weight: 500;
}

/* Color for titles, they should have a grey bounding box around */
h1,
h2,
h3
{
    /* Version 1 */
/*
    border-bottom: 1px solid lightgrey;
    padding: 10px 10px 10px 10px;
    padding: 5px 5px 5px 5px;
    background-color: var(--conference-color);
    color: white;
    width: fit-content;
*/

    /* Version 2 */
    /* color: var(--conference-color); */

    /* Version 3 */
    /* color: #31708f; */

    /* Version 4 */
    border-bottom: 1px solid lightgrey;
    padding: 10px 10px 10px 10px;
    background-color: var(--conference-color);
    color: white;
    width: fit-content;
}

h1 {
    margin-top: 0px;
    font-size: 28px;
}

h2 {
    font-size: 24px;
}

h3 {
    font-size: 18px;
}

table.schedule td {
    border: 1px solid black !important;
    vertical-align: middle !important;
}

table.schedule th {
    border: 1px solid black !important;
    vertical-align: middle !important;
}

table.schedule {
    border: 1px solid black !important;
    text-align: center;
}
