@import "buttons.css?v03.33";
@import "forms.css?v0.3.33";
@import "log-viewer.css?v0.3.33";

body {
    font-family: system-ui,
    -apple-system, /* Firefox supports this but not yet `system-ui` */ 'Segoe UI',
    Roboto,
    Helvetica,
    Arial,
    sans-serif,
    'Apple Color Emoji',
    'Segoe UI Emoji';

        font-size: 12px;
}

form, label, p, legend {
    font-size: 15px;
}

legend {
    margin-left: 8px;
}

input[type="radio"] {
    margin-left: 11px;
}

pre.last-entry {
    font-size: 13px;
}

div.help, div.changelog {
    padding: 0 20px;
}

div.help ul {
    font-size: 15px;
}
div.help li {
    margin: 15px 0;
}

span.entry-list-item {
    position: relative;
    top: 10px;
    font-size: 13px;
}

span.current-entry {
    color: forestgreen;
}

pre.last-entry #current-play-time {
    color: forestgreen;
}

div.success-message {
    display: flex;
    background: #04AA6D;
    padding-left: 10px;
    margin: 30px 0;
}

div.time-table-item {
    padding-left: 5px;
    display: flex;
}

div.time-table-item span {
    padding-top: 5px;
    margin-bottom: 10px;
    min-height: 30px;
}

div.time-table-day {
    padding-top: 10px;
}

div.error {
    font-size: 15px;
    padding: 5px 0;
    margin: 5px 0;
    min-height: 30px;
}

div.error span {
    padding: 5px 5px;
    display: none;
    background: lightcoral;
}

#clock {
    background-color: #333333;
    font-family: sans-serif;
    color: #04AA6D;
    font-size: 30px;
    text-align: center;
    width: 100%;
    padding: 10px 0 5px;
    z-index: 100;
    margin-bottom: 7px;
    position:fixed;
    bottom:0;
    left: 0;
}

.tracker-form-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border-left: 5px solid white;
    border-right: 5px solid white;
}

label.tag {
    display: flex;
    cursor: pointer;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    margin-bottom: 0.375em;
}

label.tag input {
    position: absolute;
    left: -9999px;

}
label.tag input:checked + span {
    background-color: #d6d6e5;
}

label.tag input:checked + span:before {
    box-shadow: inset 0 0 0 0.45em #00005c;
}

label.tag span {
    background-color: #d6d6e5;
    display: flex;
    padding: 0.375em 0.75em 0.375em 0.375em;
    transition: 0.25s ease;
    width: 145px;
    font-size: 14px;
}

label.tag span:hover {
    background-color: #d6d6e5;
    box-shadow: inset 0 0 0 0.125em #00005c;
}

label.tag span:before {
    display: flex;
    flex-shrink: 0;
    content: "";
    background-color: #fff;
    width: 1.5em;
    height: 1.5em;
    margin-right: 0.375em;
    transition: 0.25s ease;
    box-shadow: inset 0 0 0 0.125em #00005c;
}

label.tag-category input:checked + span,
label.tag-category span,
label.tag-category span:hover {
    background-color: goldenrod;
}

span div.tag-counter {
    position: absolute;
    text-align: right;
    width: 153px;
    top: 15px;
    font-size: 13px;
}

button.schnell_start div.tag-counter,
button.counter div.tag-counter {
    position: relative;
    text-align: right;
    width: 129px;
    top: -4px;
    font-size: 13px;
}

.tag-list {
    font-size: 30px;
}

.top-nav {
    overflow: hidden;
    background-color: #333;
}

.top-nav a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
}

.top-nav a:hover {
    background-color: #ddd;
    color: black;
}

.top-nav a.active {
    background-color: #04AA6D;
    color: white;
}

.top-nav .icon {
    display: none;
}

@media screen and (max-width: 600px) {
    .top-nav a:not(:first-child) {display: none;}
    .top-nav a.icon {
        float: right;
        display: block;
    }
}

@media screen and (max-width: 600px) {
    .top-nav.responsive {position: relative;}
    .top-nav.responsive .icon {
        position: absolute;
        right: 0;
        top: 0;
    }
    .top-nav.responsive a {
        float: none;
        display: block;
        text-align: left;
    }
}
