/* Minecraft font */
.mc {
    font-family: "Press Start 2P", system-ui;
    font-weight: 400;
    font-style: normal;
}


.disable:checked+.card, .disable {
    display: none;
}

/* Buttons */

button:not(.text-button) {
    box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
    border: none;
    border-radius: 10px;
    padding: 10px;
    
    font-size: 1.25em;
}

button:hover {
    transform: translateY(-5px);
}

button:active {
    transform: translateY(0px);
}

button.positive {
    background: #68ff62;
}

button.negative {
    background: rgb(255, 77, 77);
}

button.neutral {
    background: rgb(146, 146, 255);
}

button.white {
    background: white;
}

.button-row {
    margin-top: 10px;
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: end;
}

.text-button {
    font-size: inherit;
    padding-top: 3px;
    padding-bottom: 3px;
    background: var(--bg-color);
    border: unset;
    border-radius: 8px;
}

.text-button:hover {
    box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
}

/* Options */

.option {
    display: none;
}

.option.active {
    display: revert;
}

/* Server status */

#server_card {
    min-width: 400px;
    min-height: 100px;
}

.server-block {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.server-icon {
    width: 96px;
    height: 96px;
    border-radius: 30px;
}

.server-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.server-title {
    font-size: 1.7em;
    margin: 0;
}

.server-motd {
    font-size: 1.4em;;
}

.players-block {
    margin-top: 20px;
}

.players-count {
    font-size: 1.2em;
}