/**
 * Author: Jan Sedláček
 */


@import 'expansion.css';
/* Style the tab */
.tab-header {
    overflow: hidden;
    border: 1px solid #ccc;
    background-color: #f1f1f1;
}

/* Style the buttons that are used to open the tab content */
.tab-header button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
}

/* Change background color of buttons on hover */
.tab-header button:hover {
    background-color: #ddd;
}

/* Create an active/current tablink class */
.tab-header button.active {
    background-color: #ccc;
}

/* Style the tab content */
.tab-content {
    display: none;
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-top: none;
    transition: height 500ms cubic-bezier(0.35, 0, 0.25, 1);
}

hr[inset]{
    margin: 0 80px;
}

a.assignment-anchor{
    color: black;
    padding: 2px;
}

a.assignment-anchor:hover{
    background-color: yellow;
}

.highlight{
    color: black;
    background-color: #32cd32c0 !important;
    padding: 5px;
    border-radius: 5px;
}