#result {
    display: flex;
    flex-direction: column;
    position: relative;
    margin-bottom: 2.5rem;
}

.result-warning {
    font-size: var(--font-size-small);
    color: var(--error);
    background: color-mix(in srgb, var(--error) 8%, transparent);
    border: 1px solid var(--error);
    border-radius: 4px;
    padding: 0.6rem 0.8rem;
    margin-top: 1rem;
}

.result-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.6rem 1.25rem;
    font-size: var(--font-size-small);
}

.result-label {
    color: var(--muted);
    font-size: var(--font-size-small);
    font-variant-caps: all-small-caps;
    align-self: center;
}

.result-value {
    align-self: center;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--muted);
}

.result-value.human,
.result-value.human span {
    font-size: var(--font-size-small);
    font-weight: 400;
    color: var(--high-accent);
}

.dt-date {
    color: rgb(66, 69, 26);
    font-size: var(--font-size-medium);
}

.dt-sep {
    font-size: var(--font-size-tiny);
    color: rgb(255, 255, 255);
    opacity: 0;
}

.dt-time {
    color: rgb(26, 26, 26);
    font-size: var(--font-size-small);
}

.error-msg {
    margin-top: 10px;
    color: var(--error);
    font-size: var(--font-size-small);
    margin: 0 auto;
}