/* Enkel CSS-reset */
html {
    box-sizing: border-box;
}
*, *:before, *:after {
    box-sizing: inherit;
}
body, h1, h2, h3, h4, h5, h6, p, ul {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Roboto", sans-serif;
}
ul {
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    border-radius: 0.25rem;
    max-height: 10rem;
    overflow: auto;
}
li {
    position: relative;
    display: block;
    padding: 0;
    color: #212529;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.125);
    cursor: pointer;
}
li a {
    display: block;
    padding: 0.5rem 1rem;
    color: inherit;
    text-decoration: none;
}
li.vald {
    font-weight: bold;
    background: #e8f4fd;
}
table {
    width: 100%;
    margin-bottom: 1rem;
    color: #212529;
    border-color: #fff;
    caption-side: bottom;
    border-collapse: collapse;
}
thead {
    font-weight: bold;
    background: #000;
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 1;
}
tr, th, td {
    padding: 0.1rem;
    border-bottom-width: 1px;
    vertical-align: baseline;
}
th {
    padding: 0.8rem 0.5rem;
    text-align: left;
}
tbody tr:nth-child(even) {
    background: #f5f4f4;
}

th#ort {
    text-align: center;
    text-transform: uppercase;
}

tbody tr.dagen td {
    background: #353535;
    color: #fff;
    font-weight: bold;
    text-align: center;
}
tbody tr.natt {
    background: #ddd;
}

tr.del {
    display: grid;
    grid-template-columns: 2rem 3.7rem auto;
    align-items: center;
    width: 100%;
    padding: 0.1rem;
}
/* td.klockslag {
    width: 2rem;
    display: inline-block;
}
td.temp {
    width: 3rem;
    white-space: nowrap;
}
 */
td.vind {
    vertical-align: middle;
    width: auto;
}
div.prognos {
    padding: 0.3rem;
    margin-bottom: 2px;
    display: grid;
    grid-template-columns: auto 1rem;
    width: 100%;
}
td.vind div.box {
    width: 1.5rem;
}
td.vind div.box img.pil {
    width: 10px;
    height: 24px;
    vertical-align: bottom;
}
td.regn {
    background: repeating-linear-gradient(
        -45deg,
        #ffffff00,
        #ffffff00 10px,
        #46529825 10px,
        #46529825 20px
    );
}