:root {
    --border-style: 1px solid rgba(203, 203, 203, 0.618);
    --border-radius: 6px;
}

body,
html {
    font-family: Inter, sans-serif;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    background-color: #f9f9f9;
}

input {
    padding: 8px;
    border-radius: var(--border-radius);
    width: 248px;
    border: var(--border-style);
    background-color: white;
}

label {
    display: block;
    font-size: 11pt;
    margin-bottom: 4px;
}

.content-container {
    display: flex;
    justify-content: center;
    height: 100dvh;

    &>.content {
        width: 100%;
        max-width: 1200px;
        margin: 0 24px;
    }
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

#daily-input {
    width: 100%;
    height: 80dvh;
    resize: none;
    border: var(--border-style);
    background-color: white;
    padding: 32px 32px 128px 32px;
    border-radius: var(--border-radius);
    font-family: 'Monaspace Neon', 'Cousine', 'CommitMono', 'Fira Code Retina', 'DM Mono', 'Cascadia Mono', 'Roboto Mono', monospace;
    font-size: 18pt;
    box-sizing: border-box;
}

input:focus,
textarea:focus {
    outline: none;
}

button {
    appearance: none;
    background-color: #fbfbfb;
    border: var(--border-style);
    border-radius: var(--border-radius);
    box-shadow: rgba(27, 31, 35, 0.04) 0 1px 0,
        rgba(255, 255, 255, 0.25) 0 1px 0 inset;
    box-sizing: border-box;
    color: #24292e;
    cursor: pointer;
    display: inline-block;
    font-size: 12pt;
    font-weight: 500;
    line-height: 20px;
    list-style: none;
    padding: 12px 20px;
    position: relative;
    transition: background-color 0.2s cubic-bezier(0.3, 0, 0.5, 1);
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    vertical-align: middle;
    white-space: nowrap;
    word-wrap: break-word;
}

button:hover {
    background-color: #f7f8f9;
    text-decoration: none;
    transition-duration: 0.1s;
}

button:disabled {
    background-color: #fafbfc;
    border-color: rgba(27, 31, 35, 0.15);
    color: #959da5;
    cursor: default;
}

button:active {
    background-color: #edeff2;
    box-shadow: rgba(225, 228, 232, 0.2) 0 1px 0 inset;
    transition: none 0s;
}

button:focus {
    outline: 1px transparent;
}

button:before {
    display: none;
}

button:-webkit-details-marker {
    display: none;
}