
    @font-face {
      font-family: "FightCard";
      src: url("path/to/font.ttf"); /* Replace with your custom fight card font */
    }
    body {
      font-family: sans-serif;
      margin: 0;
      padding: 0;
      min-height: 100vh;
    }
    .fight-card {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      padding: 20px;
      background-color: #242424;
      color: #fff;
      border-radius: 5px;
      margin: 20px auto;
      max-width: 90%;
    }
    .fight-col {
      flex: 1;
      text-align: center;
      margin: 10px;
    }
    .fighter-img {
      width: 150px;
      height: 200px;
      border-radius: 10px;
      object-fit: cover;
    }
    .fighter-name {
      font-family: "FightCard";
      font-size: 1.5rem;
      margin-bottom: 5px;
    }
    .match-details {
      font-size: 1rem;
      text-transform: uppercase;
      font-weight: bold;
      margin-bottom: 10px;
    }
    .result {
      font-size: 0.8rem;
      font-weight: normal;
    }

    /* Your existing styles remain unchanged */

/* New styles for result box */
.result-box {
  background-color: #333;
  border-radius: 0px;
  overflow: hidden;
  position: relative;
  margin-top: 10px;
  text-align: center;
  width: 80%;                                       
}

.result-box::before,
.result-box::after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: 30px;
  height: 30px;
  background-color: inherit;
  z-index: 1;
}

.result-box::before {
  left: 0;
  border-bottom-left-radius: 5px;
  background-image: linear-gradient(to top right, transparent 50%, #333 50%);
}

.result-box::after {
  right: 0;
  border-bottom-right-radius: 5px;
  background-image: linear-gradient(to top left, transparent 50%, #333 50%);
}

.result-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 10px;
}

.rowCol {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
    padding-top: 10px;
    padding-right: 10px;
    padding-left: 10px;
    padding-bottom: 0;
}

.info-label {
  font-weight: bold;
  color: #fff;
}

.detail-info {
  font-size: 12px; /* Adjust the font size as needed */
  justify-content: center;
  align-items: center;
  text-align: center;
}


.info-value {
  color: #fff;
}


    @media (max-width: 768px) {
      .fight-col {
        flex: 2;
      }
      .fighter-img {
        width: 100px;
        height: 150px;
      }
      .fighter-name {
        font-size: 1.3rem;
      }
      .match-details {
        font-size: 0.8rem;
      }
    }

    /* Media query for screens with a maximum width of 768px */
    @media (max-width: 768px) {
      .fight-card {
        flex-direction: row; /* Display in a column for smaller screens */
      }
      .fight-col {
        width: calc(100% - 20px); /* Take full width on smaller screens with some spacing */
        text-align: center;
        margin: 0 auto 20px; /* Add margin for spacing between columns */
      }
      .fighter-img {
        width: 100px;
        height: 150px;
      }
      .fighter-name {
        font-size: 1.3rem;
      }
      .match-details {
        font-size: 0.8rem;
      }
      .result-box::before,
      .result-box::after {
        display: none; /* Hide slanted edges for smaller screens */
      }
      .result-box {
        border-radius: 5px; /* Keep border-radius for the result box */
      }
      .result-info {
        display: flex; /* Display result info in flex for three columns */
        justify-content: space-between;
        background-color: #333;
        border-radius: 5px;
        overflow: hidden;
        color: #fff;
      }
      .info-label,
      .info-value {
        flex: 1; /* Equal width for the three columns */
        padding: 10px;
        text-align: center;
      }
    }

    /* Your existing styles remain unchanged */

/* Media query for screens with a maximum width of 768px */
@media (max-width: 768px) {
  /* Existing mobile styles for other elements */

  /* Hide result box for smaller screens */
  .result-box {
    display: none;
  }
}
/* Your existing styles remain unchanged */

/* Media query for screens with a maximum width of 768px */
@media (max-width: 768px) {
  /* Existing mobile styles for other elements */

  /* Hide slanted edges for smaller screens */
  .result-box::before,
  .result-box::after {
    display: none;
  }

  /* Keep border-radius for the result box */
  .result-box {
    border-radius: 5px;
  }

  /* Display result info in flex for three columns */
  .result-info {
    display: flex;
    justify-content: space-between;
    background-color: #333;
    border-radius: 5px;
    overflow: hidden;
    color: #fff;
  }

  /* Equal width for the three columns */
  .info-label,
  .info-value {
    flex: 3;
    padding: 10px;
    text-align: center;
  }
}

/* Media query for screens with a maximum width of 768px */
@media (max-width: 768px) {
      /* Existing mobile styles for other elements */
      /* Hide slanted edges for smaller screens */
      .result-box::before,
      .result-box::after {
        display: none;
      }

      /* Keep border-radius for the result box */
      .result-box {
        border-radius: 5px;
      }

      /* Display result info in flex for three columns */
      .result-info {
        display: flex;
        justify-content: space-between;
        background-color: #333;
        border-radius: 5px;
        overflow: hidden;
        color: #fff;
      }

      /* Equal width for the three columns */
      .info-label,
      .info-value {
        flex: 1;
        padding: 10px;
        text-align: center;
      }
    }

    /* Define the hide-mobile class */
@media (max-width: 767px) {
  .hide-mobile {
    display: none;
  }
}


