/* ------------------------------------------------------------------------------------------------------------------ */
/* Fight cards                                                                                                        */
/* ------------------------------------------------------------------------------------------------------------------ */
.card {
    border: none !important;
}
.card-hover:hover {
    background-color: var(--bs-dominant);
    cursor: pointer;
}
.blurred {
    background-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(15 px);
    -webkit-backdrop-filter: blur(15px);
}
.card-title {
    padding-right: 1rem;
}
.edit-icon {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 1.8rem;
    height: 1.8rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    line-height: 1;
    background-color: rgba(0, 0, 0, 0.08);
    border-radius: 50%;
    opacity: 0.7;
    z-index: 2;
}
.status {
    font-weight: bold;
    padding: 0.2rem 0.5rem;
    border-radius: 0.25rem;
    color: #fff;
    font-size: 0.75rem;
    white-space: nowrap;
    text-align: center;
}
.unresolved {
    background: red;
}
.in-progress {
    background: orange;
}
.resolved {
    background: limegreen;
}
.tag-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
}
.tag {
    background: var(--bs-accent);
    display: inline-block;
    color: white;
    padding: 0.25rem 0.5rem 0.3rem;
    border-radius: 0.75rem;
    font-weight: bold;
    font-size: 0.75rem;
    white-space: nowrap;
    word-break: keep-all;
}
.card-text {
    white-space: pre-line;
}
.btn-primary:not(.collapsed) {
    background-color: var(--bs-accent) !important;
    border-color: var(--bs-accent) !important;
    color: white !important;
}
.btn-primary:active {
    background-color: #c2185b !important;
    transform: scale(0.98);
    transition: transform 0.1s, background-color 0.1s;
}