:root {
    --bs-accent: #f92672;
}
.w-30 {
    width: 30% !important;
}
.w-35 {
    width: 30% !important;
}

#fightForm .container {
    margin-top: 3rem;
    margin-bottom: 3rem;
}
.form-check-input:checked {
    background-color: var(--bs-accent);
    border-color: var(--bs-accent);
}
input[type="range"] {
    accent-color: var(--bs-accent);
    width: 100%;
    height: 1rem;
}
#intensityLabel {
    font-weight: bold;
    margin-left: 0.5rem;
}
.intensity-legend {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    margin-top: 0.25rem;
}
input[type=range]::-webkit-slider-thumb,
input[type=range]:active::-webkit-slider-thumb,
input[type=range]:focus::-webkit-slider-thumb,
input[type=range]:hover::-webkit-slider-thumb {
    background: var(--bs-accent);
}
#description {
    min-height: 8em;
}
.btn-primary,
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:focus-visible,
.btn-primary:not(.collapsed) {
    background-color: var(--bs-accent) !important;
    border-color: var(--bs-accent) !important;
    color: #fff !important;
}
.btn-primary:active {
    background-color: #c2185b !important;
    transform: scale(0.98);
    transition: transform 0.1s, background-color 0.1s;
}

@media (max-width: 899px) {
    #fightForm .container {
        max-width: 95%;
        margin: 2rem auto;
    }
    #description {
        min-height: 25em !important;
    }
}