@import url('https://fonts.googleapis.com/css2?family=Droid+Sans+Mono&display=swap');

:root {
    --input-height: 20px;
    --input-font-size: 14px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-weight: 400;

    -webkit-user-select: none; /* Safari */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Standard Chrome und andere */
}

body {
    font-family: 'Droid Sans Mono', monospace;
    background-color: #eee;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1, h2 {
    color: #333;
    margin-top: 1rem;
    text-shadow: -.025em 0 0 #000, .025em 0 0 #000;
}

#entries-container {
    width: 800px;
}

.entry-row, .entry-row *, .entry-header {
    font-family: 'Droid Sans Mono', monospace;
    font-size: var(--input-font-size);
}
.entry-header * {
    font-family: 'Droid Sans Mono', monospace;
    font-size: var(--input-font-size);
    background-color: white;
    line-height: var(--input-height);
    padding-top: 1px;
    text-shadow: -.025em 0 0 #000, .025em 0 0 #000;
}

.entry-row, .entry-header {
    display: grid;
    grid-template-columns: 10ch 10ch 1fr 10ch;
    gap: 1ch;
    border-bottom: 2px solid #eee;
}

.entry-row>input, .entry-row>textarea {
    border: 0;
    outline: none;
    line-height: var(--input-height);
}
.entry-row > textarea {
    resize: none;
    height: var(--input-height);
}
.entry-row>input::placeholder, .entry-row>textarea::placeholder {
    color: #999999;
    opacity: 1;
}
.entry-row>.date-input {
    --placeholder-color: #999999;
 }
