body {
    height: 100vh;
    width: 100vw;
    background-image: url("../img/background.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.hidden {
    display: none;
}

.container {
    padding-top: 4rem;
}

.timetable {
    position: fixed;
    width: 48%;
    border: 1px solid black;
    display: grid;
    grid-auto-flow: column;
    grid-template-columns: 2fr repeat(5, 3fr);
    grid-template-rows: repeat(11, 3rem);
}
.timetable div {
    border: 1px solid black;
    padding: 0.2rem 0.5rem;
    font-size: 0.9rem;
    overflow: hidden;
}

.jumbotron p {
    text-align: justify;
}

.jumbotron .logout {
    position: absolute;
    top: 1.25rem;
    right: 2rem;
    color: #dc3545;
}

.category {
    margin: 1.5rem 0;
}

.blocked {
    background-color: #68f442 !important;
}
.needed {
    background-color: #666;
}

.evaluate-main {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
}
.evaluate-option {
    text-align: center;
    border: 1px solid grey;
}
.evaluate-option .title {
    padding: 0.5rem;
    font-weight: bold;
}
.evaluate-option .time {
    margin: -0.25rem 0 0.25rem 0;
}
.evaluate-option .content {
    margin-top: 0.5rem;
    border-top: 1px solid grey;
}
.evaluate-option .content .user {
    padding: 0.25rem;
    margin: 0.25rem;
    cursor: grab;
}
.evaluate-option .content .first-choice {
    background-color: #8bc34a;
}
.evaluate-option .content .second-choice {
    background-color: #ffa726;
}
.evaluate-option .content .bad-choice {
    background-color: #e57373;
}
.evaluate-option .content .declined-choice {
    background-color: #7f0000;
}
.evaluate-option .content .no-choice {
    background-color: #bbb;
}