html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
    margin-bottom: 60px;
    background-color: #F2F2F2;
}

/* Tabs */
.tablist {
    /*display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));*/
    position: sticky;
    top: -1px;
    display: flex;
    font-size: 1.5rem;
    justify-content: center;
    border-bottom: 1px solid black;
    margin-bottom: 1rem;
    padding: 0;
    background-color: white;
}

@media only screen and (min-width: 768px) {
    .tablist {
        padding: 0 1rem;
    }
}

.tablist .tabitem {
    background-color: #E6E6E6;
    position: relative;
    top: 1px;
    padding: 0.5rem;
    border: 1px solid black;
    cursor: pointer;
    flex-basis: 0;
    flex-grow: 1;
    flex-shrink: 1;
    text-align: center;
}

.tablist .tabitem:hover {
    background-color: #EDEDED;
}

.tablist .selected-tabitem {
    background-color: white;
    border-bottom: 1px solid white;
    cursor: default;
}

.tablist .selected-tabitem:hover {
    background-color: white;
}

/* Comment bubble */

.commentbubble {
    background-color: #E5E5E5;
    border-radius: 13px;
    padding: 0.5rem;
}

/* Stuff */

.spanlink {
    cursor: pointer;
}

.spanlink:hover {
    text-decoration: underline;
}

.buttonrow {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
}