:root {
    font-family: Verdana;
    font-size: 12px;
}

a {
    color: black; /* blue colors for links too */
    text-decoration: inherit; /* no underline */
}

a:hover {
    color: black;
    text-decoration: underline;
}

article {
    width: 80%;
    margin: auto;
}

h1 {
    display: none;
}

h2 {
    text-align: center;
    margin-bottom: 2rem;
}

h3 {
    font-size: 16pt;
}

input[name="_submit"] {
    float:right;
    width:200px;
}

.login {
    width:400px;
    margin:auto;
    text-align: center;
}

.login .btn {
    width:100%;
}

.row {
    margin-top:1em;
    margin-bottom:1em;
}

body {
    font-size: 14px;
    background: #f8f9fa;
}

label {
    font-weight: bolder;
}

.Header {
    padding: 16px 0;
    background: #fff;
    margin-bottom: 32px;
}

.Header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.Panel {
    border-radius: 8px;
    padding: 16px;
    background: #fff;
}

.Panel-dateSelect {
    grid-area: dateSelect;
}

.Panel-taskAdd {
    grid-area: taskAdd;
}

.Panel-taskList {
    grid-area: taskList;
}

.Panel-summary {
    grid-area: summary;
}

.Layout {
    display: grid;
    grid-template-columns: 4fr minmax(0, 2fr);
    grid-template-areas:
        'dateSelect dateSelect'
        'taskAdd summary'
        'taskList summary';
    gap: 32px;
    margin-bottom: 32px;
}

.u-container {
    width: 100%;
    max-width: 1840px;
    padding: 0 32px;
    margin: 0 auto;
}

input[type="time"] {
    padding: .375rem .375rem;
}