/* ---------------------------------------------------------- */
/* WIKI-SPECIFIC STYLES                                      */
/* ---------------------------------------------------------- */

.pixel-art{
    image-rendering:pixelated;
    image-rendering:crisp-edges;
    max-width:100%;
}

.infobox{
    float:right;
    width:240px;
    margin:0 1rem 1rem 2rem;
}

h2{
    clear:right;
}

.stats{
    width:100%;
    border-collapse:collapse;
}

/* --- Start of Fix --- */

/* Base styles for both cell types */
.stats th, .stats td {
    padding-top: 2px;
    padding-bottom: 2px;
    white-space: nowrap;
    font-weight: 400;
}

/* Styles for the label cell (th) */
.stats th {
    text-align: right;
    padding-left: 8px;
    padding-right: 0; /* Remove cell's right padding */
}

/* Styles for the separator after the label */
.stats th::after {
    content: "|";
    color: #c0d1c0;
    padding: 0 8px; /* Apply 8px of equal space on both sides of the pipe */
}

/* Styles for the value cell (td) */
.stats td {
    text-align: left;
    padding-left: 0; /* Remove cell's left padding to prevent double spacing */
    padding-right: 8px;
}

/* --- End of Fix --- */
/* Styles for slime variant navigation */
.variant-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 15px 0;
}

.variant-nav h3 {
    margin: 0;
    font-size: 1.2em;
}

.variant-nav button {
    background: none;
    border: 1px solid var(--accent-color);
    color: var(--text-color);
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    padding: 0 8px;
}

.variant-nav button:hover {
    background-color: var(--nav-bg);
}

#slime-dots-container {
    text-align: center;
    padding: 8px 0;
}

.dot {
    cursor: pointer;
    height: 10px;
    width: 10px;
    margin: 0 3px;
    background-color: var(--nav-bg);
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.dot.active {
    background-color: var(--accent-color);
}

