.match-card {
    border: 1px solid #ddd;
    border-radius: 8px;
}

.match-card .team1 {
    color: #003366;
    /* Adjust color as needed */
    font-weight: bold;
}

.match-card .team2 {
    color: #b32420;
    /* Adjust color as needed */
    font-weight: bold;
}

.match-card .arena {
    font-style: italic;
    color: #555;
}

.match-card .match-date {
    font-size: 14px;
    color: #555;
}

.match-card .fighter-img {
    width: 100px;
    /* Adjust as needed */
    height: auto;
    filter: grayscale(100%);
}

.match-card .vs {
    font-size: 20px;
    color: #333;
}

.match-card .card-footer {
    background-color: #f8f9fa;
}

.match-card .card-footer i {
    color: #b32420;
    /* Adjust icon color */
    font-size: 20px;
}

.footer-link {
    color: inherit;
    text-decoration: none;
}

.footer-link:hover {
    text-decoration: underline;
}

.footer-text {
    font-size: 14px;
    color: #b32420;
}


/* Copy Animation */
.base-color {
    color: hsl(var(--main)) !important;
}

.copyInput {
    display: inline-block;
    line-height: 50px;
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    text-align: center;
    font-size: 14px;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.copied::after {
    position: absolute;
    top: 8px;
    right: 12%;
    width: 100px;
    display: block;
    content: "COPIED";
    font-size: 1em;
    padding: 5px 5px;
    color: #fff;
    background-color: #ff7000;
    border-radius: 3px;
    opacity: 0;
    will-change: opacity, transform;
    animation: showcopied 1.5s ease;
}

@keyframes showcopied {
    0% {
        opacity: 0;
        transform: translateX(100%);
    }

    50% {
        opacity: 0.7;
        transform: translateX(40%);
    }

    70% {
        opacity: 1;
        transform: translateX(0);
    }

    100% {
        opacity: 0;
    }
}

.cookies-card {
    width: 520px;
    padding: 30px;
    color: #1e2337;
    position: fixed;
    bottom: 15px;
    left: 15px;
    z-index: 999999;
    transition: all 0.5s;
    background: #d1d1d1;
    border-radius: 5px;
}

.cookies-card.hide {
    bottom: -500px !important;
}

.radius--10px {
    border-radius: 10px;
}

.cookies-card__icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: #6e6f70;
    color: #fff;
    font-size: 32px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.cookies-card__content {
    margin-bottom: 0;
}

.cookies-btn {
    color: #363636;
    text-decoration: none;
    padding: 10px 35px;
    margin: 3px 5px;
    display: inline-block;
    border-radius: 999px;
}

.cookies-btn:hover {
    color: #363636;
}

@media (max-width: 767px) {
    .cookies-card {
        width: 100%;
        left: 0;
        bottom: 0;
        font-size: 14px;
        padding: 15px;
    }
}

.hover-input-popup {
    position: relative;
}

.input-popup {
    display: none;
}

.hover-input-popup .input-popup {
    display: block;
    position: absolute;
    bottom: 130%;
    left: 50%;
    width: 280px;
    background-color: #1a1a1a;
    color: #fff;
    padding: 20px;
    border-radius: 5px !important;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.input-popup::after {
    position: absolute;
    content: "";
    bottom: -19px;
    left: 50%;
    margin-left: -5px;
    border-width: 10px 10px 10px 10px;
    border-style: solid;
    border-color: transparent transparent #1a1a1a transparent;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.input-popup p {
    padding-left: 20px;
    position: relative;
}

.input-popup p::before {
    position: absolute;
    content: "";
    font-family: "Line Awesome Free";
    font-weight: 900;
    left: 0;
    top: 4px;
    line-height: 1;
    font-size: 18px;
}

.input-popup p.error {
    text-decoration: line-through;
}

.input-popup p.error::before {
    content: "\f057";
    color: #ea5455;
}

.input-popup p.success::before {
    content: "\f058";
    color: #28c76f;
}

.show-filter {
    display: none;
}

@media (max-width: 767px) {
    .responsive-filter-card {
        display: none;
        transition: none;
    }

    .show-filter {
        display: block;
    }
}

.mobile-code {
    cursor: pointer;
    padding-right: 5px;
    font-size: 0.875rem;
    font-weight: 500;
}

.text-muted {
    color: #b1b1b1 !important;
}

.text--extra-small {
    font-size: 0.625rem !important;
}

.text--small {
    font-size: 0.75rem !important;
}

.custom-dropdown-selected {
    position: relative;
    font-size: 0.875rem;
}

.custom-dropdown-selected:after {
    position: absolute;
    content: "\f107";
    font-family: "Line Awesome Free";
    font-weight: 900;
    margin-left: 0.5rem;
    cursor: pointer;
    transition: transform 0.4s ease;
}

.custom-dropdown.show .custom-dropdown-selected:after {
    transform: rotate(180deg);
}

.custom-dropdown-list {
    list-style: none;
    position: absolute;
    background-color: #ffffff;
    box-shadow: 0 0 8px 0 #e8e8e8;
    border-radius: 8px;
    border: 1px solid #ebebeb;
    z-index: 9;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0s linear 0.3s;
}

.custom-dropdown-list-item.disabled {
    font-weight: 500;
    opacity: 0.6;
    pointer-events: none;
}

.custom-dropdown.show .custom-dropdown-list {
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
}

.custom-dropdown-list-item {
    border-bottom: 1px solid #f7f7f7;
    padding: 8px 15px;
    font-size: 0.875rem;
    cursor: pointer;
}

.custom-dropdown-list-item:last-child {
    border-bottom: 0;
}


.score-round-container {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.fighter-score {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.fighter {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.fighter-name {
    font-size: 1.2em;
    font-weight: bold;
}

.fighter-score-number {
    font-size: 2em;
    color: #333;
}

.progress-bar-container {
    position: relative;
    width: 100%;
    margin: 20px 0;
}

.progress-bar {
    width: 100%;
    height: 20px;
    -webkit-appearance: none;
    appearance: none;
    background: linear-gradient(to right, #007bff 50%, #ff4d4d 50%);
    border-radius: 10px;
    outline: none;
    overflow: hidden;
}

.progress-bar::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #333;
    cursor: pointer;
    position: relative;
}

.reasons,
.comments,
.confirm-button-container {
    margin-top: 20px;
}

.reason-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.reason-button {
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    border: none;
    transition: background-color 0.3s ease;
}

.reason-button.active {
    background-color: #007bff;
    color: #fff;
}

.comments input {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.confirm-button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}


.score-section {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 5px;
}

.score-image {
    width: 100px;
    height: auto;
}

.fighter-name {
    font-size: 1.2rem;
    font-weight: bold;
}

.vs-text {
    font-size: 1.5rem;
    font-weight: bold;
}

.welcome-title {
    color: #a52a2a;
    font-weight: bold;
    margin-bottom: 10px;
}

.intro-text {
    font-size: 0.9rem;
    color: #555;
}

.start-party-link {
    color: #a52a2a;
    font-weight: bold;
    text-decoration: underline;
}

.instructions-title {
    font-weight: bold;
    margin-top: 20px;
    color: #333;
}

.instructions-text,
.instructions-list {
    list-style: none;
    font-size: 0.9rem;
    color: #333;
}

.instructions-list li {
    margin-bottom: 5px;
}

.guest-name-label {
    font-weight: bold;
    font-size: 1rem;
}

.guest-name-input {
    display: inline-block;
    width: 100%;
}

.start-scoring-button {
    background-color: #006400;
    border: none;
    color: white;
}

/* Container styling */
.scoring-party-card {
    background-color: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    text-align: center;
}

.scoring-container {
    background-color: #ddd;
    border-radius: 5px;
    padding: 15px;
}

.score-number,
.rounds-number {
    font-size: 1.5rem;
    font-weight: bold;
}

.score-text {
    font-size: 1rem;
    color: #555;
}

/* Custom progress bar styles */
.custom-progress {
    width: 100%;
    height: 30px;
    background-color: #f3f3f3;
    border-radius: 5px;
    position: relative;
}

/* Team 1 - Green (left side) */
.team1-progress {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    background-color: green;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Team 2 - Red (right side) */
.team2-progress {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: red;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Text in the center of the progress bar */
.progress-text {
    color: white;
    font-weight: bold;
    font-size: 14px;
}

/* Round List Styling */
.round-list {
    display: none;
    margin-top: 20px;
}

.round-list .round-item {
    margin-bottom: 15px;
}

.round-list .round-item .progress {
    margin-top: 10px;
}