#search-input {
    display: block;
    background-color: var(--shade-2percent);
    transition: background-color 0.25s ease;
    color: var(--soft-emphasis);
    padding: 12px 30px;
    border-radius: 25px;
    margin-top: 10px;
    margin-bottom: 10px;
    text-decoration: none;
    font-weight: 500;
    line-height: 1rem;
    font-size: 16px;
    border: 0;
    max-width: 200px;
    width: 100%;
}

#search-input:hover {
    background-color: var(--shade-4percent);
}

#search-input:focus {
    outline: none;
    background-color: var(--shade-6percent);
}

#search-input::placeholder {
    color: var(--soft-emphasis);
    opacity: 0.7;
}

#search-input:focus::placeholder {
    opacity: 0;
}

.errormsg {
    display: none;
    text-align: center;
    margin-bottom: 30px;
}

.errormsg img {
    width: 200px;
    height: auto;
    margin-bottom: 8px;
}

.errormsg h3 {
    font-size: 1.6em;
    margin-bottom: 4px;
}

.errormsg p {
    font-size: 1em;
    color: var(--soft-emphasis);
}