body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

h2 {
    margin: 0;
    font-size: 80px;
    opacity: 0.5;
}

table {
    margin: 0 0 50px;
    padding: 0;
    border-width: 0 1px 1px 0;
    border-style: solid;
    border-color: #ccc;
    border-collapse: collapse;
    table-layout: fixed;
    width: 100%;
}

.disclaimer {
    margin: 0;
    padding: 10px 20px;
    background: #333;
    color: white;
    text-align: center;
}

.wrapper {
    padding: 30px;
}
.wrapper.sm {
    opacity: 0.05;
}

th, td {
    padding: 5px;
    border-width: 1px 0 0 1px;
    border-style: solid;
    border-color: #ccc;
    font-size: 16px;
    text-align: left;
    vertical-align: top;
}

td.star-trek-tng { background: #fffede; }
td.star-trek-ds9 { background: #a87dcb; }
td.star-trek-voy { background: #6290b5; }

div.date {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    margin-bottom: 5px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 50%;
    text-align: center;
    font-size: 14px;
}

div.date.today {
    background: red;
    color: white;
}

div.episode {
    display: flex;
    gap: 3px;
    align-items: baseline;
    font-size: 12px;
}

div.episode div {
    padding: 3px 4px;
    border-radius: 3px;
}

div.episode div.tag {
    background: #333;
    color: white;
}

div.episode div.title {
    flex: 1;
    background: white;
    border: 1px solid #ddd;
}

.checkbox-label input {
    display: none;
}

.checkbox-label .label {
    position: relative;
    display: inline-block;
    padding-left: 30px;
    line-height: 22px;
    cursor: pointer;
}

.checkbox-label .label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 20px;
    height: 20px;
    border: 1px solid #ccc;
}

.checkbox-label input:checked ~ .label:before {
    background: #446fdc url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 16 16%27%3E%3Cpath fill=%27%23fff%27 fill-rule=%27evenodd%27 d=%27M12 5c-.28 0-.53.11-.71.29L7 9.59l-2.29-2.3a1.003 1.003 0 0 0-1.42 1.42l3 3c.18.18.43.29.71.29s.53-.11.71-.29l5-5A1.003 1.003 0 0 0 12 5%27 clip-rule=%27evenodd%27/%3E%3C/svg%3E") center center;
    border-color: #446fdc;
}