@media (max-width: 768px) {
    .column-25 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
}

* {
    font-family: "Source Code Pro", monospace;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.sprite-icon {
    display: inline-block;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
    --sheet-w: 2400px;
    --sheet-h: 2400px;
    --icon-scale: 6;
    --base-size: 24px;
    width: calc(var(--base-size) * var(--icon-scale));
    height: calc(var(--base-size) * var(--icon-scale));
    background-repeat: no-repeat;
    background-position:
        calc(var(--x) * var(--icon-scale)) calc(var(--y) * var(--icon-scale));
    background-size:
        calc(var(--sheet-w) * var(--icon-scale)) calc(var(--sheet-h) * var(--icon-scale));
    position: relative;
    background-color: transparent;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;

    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.75);
    padding: 4px;
    margin: 4px;
    font-size: 14px;
    font-weight: bold;
    box-sizing: border-box;
}

.sprite-icon::after {
    content: attr(data-rank);
    position: absolute;
    bottom: 5px;
    right: 5px;
    background-color: rgba(0, 0, 0, 0.25);
    color: yellow;
    font-size: 12px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 4px;
    line-height: 1;
    z-index: 1;
}

.sprite-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #79A4F9;
    z-index: -1;
}

.icon-highlight {
    box-shadow: 0 0 0 2px #CDCDFF, 0 1px 3px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

.icon-link {
    position: relative;
    display: inline-block;
}

.icon-link::after {
    content: '';
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
    width: 48px;
    height: 48px;
    background-image: var(--icon-url);
    background-size: 48px 48px;
    background-repeat: no-repeat;
    background-color: #79A4F9;
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 8px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.icon-link:hover::after {
    opacity: 1;
    visibility: visible;
}

ul {
    list-style: none;
}

.li {
    display: none;
}

b {
    cursor: crosshair;
}

label {
    font-size: 12px;
}

button,
input[type="submit"] {
    width: 100%;
}

.nav {
    position: sticky;
    top: 0;
    z-index: 999;
    background-color: #FFF;
}

.nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    gap: 1rem;
}