/*
====================================
Players Details Section Styles
====================================
*/

.players-details {
  padding: 100px 0 0;
}

.Players_info img {
  border-radius: 20px;
  height: 427px;
  object-fit: cover;
}

.players-details .main-description h2 {
  color: #000000;
  font-size: 42px !important;
  font-family: 'Bebas Neue', sans-serif !important;
}

.color-dark-red {
  color: #c70101 !important;
}

.players-details .main-description {
  padding-bottom: 15px;
}

.players-details .main-description p {
  /* color: #999999; */
  text-align: justify;
  font-size: 16px;
  line-height: 27px;
  font-weight: 400;
  margin-top: 10px;
}

.player_name h3 {
  color: #c70101;
  margin-top: 15px;
}

/* Player Image/Scouting Report Sidebar */
.shorted_player {
  position: sticky;
  top: 30px;
}

.team-single-image {
  margin-bottom: 47px;
}

/* Scouting Guide Box */
.scouting_guide {
  background: linear-gradient(
    315deg,
    #c42221 -3%,
    #153752 58.57%,
    #031521 91.58%
  );
  border-radius: 20px;
}

.scouting_guide h3 {
  color: #fff;
  font-family: 'Bebas Neue', sans-serif !important;
  padding: 20px;
  border-bottom: 1px solid #ffffff1a;
}

.scouting_guide ul {
  margin: 0;
  padding: 20px;
  list-style: none;
}

.scouting_guide ul li {
  font-family: 'Bebas Neue', sans-serif !important;
  font-size: 22px;
  color: #ffffff;
  display: inline-flex;
  justify-content: space-between;
  width: 100%;
  line-height: 1.3em;
  margin-bottom: 20px;
}

.scouting_guide ul li span {
  font-family: 'Heebo', sans-serif;
  font-size: 16px;
  width: 68%;
}

/*
====================================
Statistics Table Styles
====================================
*/

table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  margin: 0 auto 10px;
  font-family: Arial, sans-serif;
}

th,
td {
  border: 1px solid #333;
  padding: 10px;
}

/* Table Row Colors */
tr:nth-child(odd) {
  background-color: #f2f2f2; /* Light Gray */
}

tr:nth-child(even) {
  background-color: #d9edf7; /* Light Blue */
}

th {
  background-color: #b31b1b; /* Dark Red */
  color: #fff;
}

/*
====================================
Pros & Cons / Mental/Tactical Boxes
====================================
*/

.wrappers_data {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.boxes_border {
  background: #fff;
  border: 2px solid #00000024;
  border-radius: 10px;
  width: 100%;
  margin-top: 15px;
}

.wrappers_data .heading h3 {
  color: #fff;
  background: linear-gradient(
    315deg,
    #c42221 -3%,
    #153752 58.57%,
    #031521 91.58%
  );
  padding: 20px 24px;
  border-radius: 10px;
  font-family: 'Bebas Neue', sans-serif !important;
}

.boxes_border ul {
  padding-left: 1.2rem;
  padding-right: 1.2rem;
}

.boxes_border ul li {
  list-style: none;
  padding-bottom: 15px;
  display: flex;
}

.boxes_border ul li i {
  margin-top: 4px;
}

.wrappers_data .fa-check-circle {
  color: #008000; /* Dark Red Checkmark */
  font-size: 18px;
  padding-right: 10px;
  margin-top: 7px;
}

.wrappers_data .fa-minus-circle {
  color: #ff0000; /* Dark Red Checkmark */
  font-size: 18px;
  padding-right: 10px;
  margin-top: 7px;
}

.wrappers_data .fa-circle {
  color: #ffeb3b; /* Dark Red Checkmark */
  font-size: 17px;
  padding-right: 10px;
  margin-top: 7px;
  content: '\2022'; /* Unicode for a solid bullet point */
}

.video_social {
  margin-top: 25px;
}

.mt-25 {
  margin-top: 25px;
}

/*
====================================
Upcoming Post Section Styles
====================================
*/

.upcoming-post {
  padding: 40px 0;
  background: linear-gradient(180deg, #f1f1ff 0%, #f7f7ff 100%);
}

.upcoming-post .main_description h2 {
  color: #000;
  font-size: 42px !important;
  font-family: 'Bebas Neue', sans-serif !important;
  padding-bottom: 25px;
}

.upcoming-post .white_box {
  border: 1px solid #d3d3d3;
  background: #fff;
}

.upcoming-post .box_wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.upcoming-post .card {
  min-height: auto;
}

.auther_avtar img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.upcoming-post .white_box .card img {
  height: 275px;
  object-fit: cover;
  width: 100%;
}

.upcoming-post .white_box .card-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 140px;
  padding: 20px;
}

.upcoming-post .card-title {
  color: #000;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
}

.upcoming-post .card-body p {
  font-weight: 300;
  font-family: 'Heebo', sans-serif;
  font-size: 14px;
  color: #000;
  margin-top: 18px;
}

.social-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 10px 20px 6px 16px;
}

.social-links .user-profile {
  display: flex;
  align-items: center;
  gap: 12px;
}

/*
====================================
Media Queries (Mobile Responsiveness)
====================================
*/

@media (max-width: 767px) {
  .players-details {
    padding: 40px 0; /* Reduced top padding for mobile */
  }

  .players-details .main-description h2 {
    margin-top: 15px;
  }

  .wrappers_data {
    flex-wrap: wrap; /* Stack Pros/Cons boxes vertically */
  }

  .upcoming-post .box_wrapper {
    grid-template-columns: repeat(
      1,
      1fr
    ); /* Single column for upcoming posts */
    gap: 30px;
  }

  .team-single-image {
    margin-bottom: 50px;
  }

  /* Horizontal scroll for statistics table on small screens */
  .table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

.scouting-details .upcoming-details {
  margin-top: 98px !important;
}

.boxes_border ul li video {
  padding-right: 20px;
}

.wrappers_data .boxes_border ul li {
  display: block !important;
}

.wrappers_data .boxes_border ul li video {
  padding-right: 0px;
}

.side_uppost {
  margin-left: 20px;
}
