html, body {
    height: 100%;
    overflow: hidden;
}

*:not(textarea,input) {
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
}

.content-container {
    height: 250px;
    z-index: 1;
    margin-bottom: max(4%, 4rem);
}

.cruxipedia-title > svg {
    height: 56px;
    width: 207.648px;
    fill: var(--text);
}

.cruxipedia-title {
    transform: scaleX(0.95);
}

.cruxipedia-title > span {
    font-size: 15px;
    color: var(--text-secondary);
    font-style: italic;
    font-weight: 500;
    font-family: "Times New Roman", serif;
    letter-spacing: 0.4px;
    position: relative;
    bottom: 11px;
}

.search-box {
    background: var(--input-background);
    padding: 6px;
    border: var(--border);
    margin-top: 1rem;
    width: 100%;
    border-radius: 25px;
}

button.search-button {
    height: 36px;
    width: 36px;
}

button.search-button:disabled {
    opacity: 0.7;
}

.suggestions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 5px;
}

.suggestions > div:first-child {
    margin-top: 8px;
}

.suggestions > div {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: space-around;
    justify-content: space-between;
    align-items: center;
    border-radius: 9px;
    padding: 8px;
    cursor: pointer;
}

.suggestions > div:hover {
    background: #8882;
}

.suggestions > div > .icon-stroke > svg {
    height: 16px;
    width: 16px;
}

@media (prefers-color-scheme: light) {
    #stars {
        display: none;
    }
}

button.search-button > svg {
    height: 17px;
    width: 17px;
    transform: rotate(-90deg);
    margin: 3.6px;
}