[x-cloak] {
    display: none !important;
  }


  .loader-circle {
    width: 40px;
    height: 40px;
    border: 4px solid #e5e7eb;
    border-top: 4px solid #2D8EFF;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
  }

  @keyframes spin {
    to {
      transform: rotate(360deg);
    }
  }
  /* Header */
.matches-header {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.matches-title {
    font-size: 17px;
    font-weight: 700;
    text-align: left;
    margin: 0;
}

/* Buttons */
.header-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.btn {
  padding: 8px 16px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
}

.btn-clear {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  transition: background 0.2s ease;
  color: #232323;
}

.btn-clear:hover {
  background: #3b82f6;
}

/* League Dropdown */
.league-dropdown , .country-dropdown{
  position: relative;
}

.league-toggle, .country-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    background: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 25px;
    cursor: pointer;
    color: #232323;
    box-shadow: none;
    height: 46px;
}

.league-toggle:hover , .country-toggle:hover {
    background: #2B8FFF;
    border: 1px solid #2B8FFF;
}

.league-toggle:hover svg path, .country-toggle:hover svg path {
    fill: #fff;
}
.league-toggle svg , .country-toggle svg {
    width: 14px;
    position: relative;
    top: 1px;
}

.league-arrow, .country-arrow {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}

.league-dropdown.is-open .league-arrow , .country-dropdown.is-open .country-arrow {
  transform: rotate(180deg);
}

/* Menu */
.league-menu ,.country-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  width: 300px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
  display: none;
  z-index: 20;
}

.country-menu label.country-btn, .league-menu label.league-btn {
    padding: 5px 10px;
    cursor:pointer;
    border-radius:5px;
}

.country-menu label.country-btn:hover , .league-menu label.league-btn:hover ,
.country-menu label.country-btn.checked , .league-menu label.league-btn.checked {
    background:#2B8FFF;
    color: #fff;
}

.league-dropdown.is-open .league-menu , .country-dropdown.is-open .country-menu {
  display: block;
}

.league-grid, .country-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    padding: 8px;
    max-height: 300px;
    overflow-y: auto;
}

.league-item , .country-item {
  padding: 8px 12px;
  font-size: 14px;
  color: #374151;
  text-decoration: none;
  border-radius: 6px;
}

.league-item:hover, .country-item:hover {
  background: #f3f4f6;
}

.league-item.is-active, .country-item.is-active {
  background: #f3f4f6;
  font-weight: 600;
}
/* Filters wrapper */
.filters-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 24px;
}

/* Live button */
.btn-live {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid #2563eb;
    color: #2563eb;
    cursor: pointer;
    white-space: nowrap;
    height: 45px;
}

.live-dot {
  width: 12px;
  height: 12px;
  background: #22c55e;
  border-radius: 50%;
}

.live-text {
  font-weight: 500;
  font-size: 14px;
}

/* Right side */
.filters-right {
  display: flex;
  gap: 12px;
  align-items: center;
  flex: 1;
}

/* Search */
.search-box {
  position: relative;
  flex: 1;
}

.search-input {
  width: 100%;
  padding: 10px 40px 10px 16px;
  background: #f3f4f6;
  border: none;
  border-radius: 12px;
  font-size: 14px;
}

.search-input:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.3);
}

.search-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: #9ca3af;
  pointer-events: none;
}

/* Date picker */
.date-trigger {
  position: relative;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.datepicker-input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  pointer-events: none;
}

.home-football-matches-inner1 {
  background: #ffffff;
  border: 1px solid #d1d5db; /* gray-300 */
  border-radius: 16px;       /* rounded-xl */
  margin-bottom: 24px;       /* mb-6 */

  padding:23px;

  height: fit-content;       /* h-fit */
}
.no-live-matches {
    font-size: 18px;
    text-align: center;
    color: red;
}

button#prev-btn, button#next-btn , button#set-date {
    box-shadow: none;
    background: transparent;
}
.all-match-list,.live-match-list,.dates-container{
  display: none;
}
.all-match-list.active,.live-match-list.active{
  display: block;
}
.dates-container.active{
  display: flex;
}

button#filter-live:hover, button#filter-live:focus ,.league-toggle:focus, .country-toggle:focus {
    background: transparent;
    color: #3b82f6;
}

.league-toggle:focus svg path, .country-toggle:focus svg path {
    fill: #3b82f6;
}

button#filter-live.active {
    background: #3b82f6;
    color: #fff;
}

button#filter-live.active span.live-dot {
    box-shadow: 0px 0px 6px #fff;
}

.live_match .match-time, .live_match .match-score {
    border-color: orange;
    color: orange;
}
#home-filter-form {
    flex: 1;
    display: flex;
    gap: 12px;
}


.tabs-ul {
    background-color: transparent;
    padding: 0;
}

.tabs-ul::-webkit-scrollbar, .navpr > ul::-webkit-scrollbar {
    height: 0;
}

#navmenuc .tabs-ul, .navmenu-ss .tabs-ul, .navpr > ul {
    display: flex;
    gap: 5px;
    overflow-x: auto;
    /*white-space: nowrap;*/
    font-size: 14px;
    /*scrollbar-width: thin;*/
    padding: 0px;
}

#navmenuc .tabs-ul > li, .navpr > ul > li, .os_btn_cont.__primary > button {
    margin-bottom: 3px;
    text-align: center;
    flex: 1;
    list-style: none;
    background-color: #fbfbfb;
    border: 1px solid #D9D9D9;
    border-radius: 36px;
    padding-left: 0;
    padding-right: 0;
    font-weight: 600;
    color: #232323;
}

#navmenuc .tabs-ul > li > a, #navmenuc .tabs-ul > li.mftbtn, .navpr > ul > li > a, .navpr > ul > li > div, .os_btn_cont > button {
    display: block;
    padding: 7px;
    padding: 7px 14px;
}

#navmenuc .tabs-ul > li.mftbtn {
    cursor: pointer;
}

#navmenuc .tabs-ul > li:hover, #navmenuc .tabs-ul > li:target, .navpr > ul > li:hover, .navpr > ul > li:target, .os_btn_cont > button:hover, .os_btn_cont > button:active {
    background-color: #e8e8e8;
    color: rgb(43 143 255);
}

#navmenuc .tabs-ul > li#current, .navpr > ul > li.act, .os_btn_cont.__primary > button.ov_active {
    color: white !important;
    background-color: rgb(4 107 210);
    outline: none;
    border: none;
}


#navmenuc .tabs-ul > li#current a {
    color: #fff;
}

#navmenuc .tabs-ul li a {
    text-decoration: none !important;
    color: #232323;
    display: flex;
    align-items: stretch;
    justify-content: center;
    align-content: stretch;
    flex-direction: row;
    height: 100%;
}

#navmenuc .tabs-ul li a span {
    justify-content: center;
    align-items: center;
    display: flex;
    line-height: normal;
    white-space: nowrap;
}

div.navmenu-ss {
    /*background-color: #2b8fff;
    border-radius: 16px;*/
    margin-top: 20px;
    margin-bottom: 20px;
}

div.navmenu-ss.lists-nav {
    display: flex;
    align-items: center;
    position: relative;
}

div.navmenu-ss.lists-nav > div:nth-child(2) {
    overflow-x: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

div.navmenu-ss.lists-nav > div:nth-child(2)::-webkit-scrollbar {
    display: none;
}

div.navmenu-ss.lists-nav > .b_prnav, div.navmenu-ss.lists-nav > .b_prnavl {
    background-color: #5b5b5b;
    box-shadow: none;
    margin: 0;
}

div.navmenu-ss.lists-nav #navmright, div.navmenu-ss.lists-nav #navmleft {
    color: #fff;
}

div.navmenu-ss.lists-nav > .b_prnav:hover, div.navmenu-ss.lists-nav > .b_prnav:target, div.navmenu-ss.lists-nav > .b_prnavl:hover, div.navmenu-ss.lists-nav > .b_prnavl:target {
    background-color: #707070;
}

div.navmenu-ss.lists-nav .tabs-ul {
    justify-content: flex-start;
}

div.navmenu-ss .tabs-ul {
    /*padding: 10px 0;
    padding-left: 0;
    justify-content: center;
    align-items: center;*/
}

div.navmenu-ss .tabs-ul > li#current {
    border-bottom: 2px solid #2b8fff;
    position: relative;
    bottom: 0px;
}

div.navmenu-ss .tabs-ul > li {
    display: inline-block;
    cursor: pointer;
    text-align: center;
    padding: 0px 0px;
}

.tabs-ul > li {
    margin: 0;
}

div.navmenu-ss .tabs-ul a > span {
    color: #6b7280;
    font-weight: normal;
    vertical-align: middle;
    padding: 10px 26px;
    border-radius: 20px;
    display: block;
}
div.navmenu-ss .tabs-ul {
    border-bottom: 1px solid #e5e7eb;
}

div.navmenu-ss .tabs-ul a:hover > span {
    /*color: white;*/
}

div.navmenu-ss .tabs-ul a:hover img.m_ics, div.navmenu-ss .tabs-ul a:hover div.upc_cls, div.navmenu-ss .tabs-ul li#current img.m_ics {
    filter: brightness(2);
}

div.navmenu-ss .tabs-ul li#current span {
    color: #2b8fff;
    background: #fff;
    font-weight: bold;
}
div.navmenu-ss .tabs-ul > li a {
    outline: none;
    text-decoration: none;
}
 /* =====================
   COMPETITION
===================== */
.competition {
    border: 1px solid #f3f4f6;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 15px;
}

.competition-header {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  padding: 5px 10px;
  background: #f9fafb;
  cursor: pointer;
  list-style: none;
}

.competition-header::-webkit-details-marker {
  display: none;
}

/* Header left */
.competition-left {
  display: flex;
  gap: 16px;
  align-items: center;
}

.competition-logo {
  width: 25px;
  height: 33px;
  border-radius: 50%;
  object-fit: contain;
}

.competition-title {
  font-size: 14px;
  font-weight: 600;
}

.competition-week {
  font-size: 12px;
  color: #6b7280;
}

/* Header right */
.competition-right {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-left: auto;
  white-space: nowrap;
}

.arrow-icon {
  width: 16px;
  height: 16px;
  color: #6b7280;
  transition: transform 0.2s ease;
}

.competition-header.open .arrow-icon {
  transform: rotate(180deg);
}

/* =====================
   MATCH ROW
===================== */
.match-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    padding: 16px;
    border-bottom: 1px solid #e5e7eb;
    text-decoration: none;
    color: inherit;
    justify-content: center;
    align-items: center;
    text-decoration: none !important;
    color: #232323;
}

a.match-row:hover {
    color: #232323;
}
.match-row:last-child {
  border-bottom: none;
}


.team span {
    font-family: Manrope;
    font-weight: 700;
    font-size: 13px;
    line-height: 100%;
        white-space: nowrap;
}
#featured-match-slider .team span{
    white-space: normal;
}
span.posted-by.vcard.author {
    text-transform: capitalize;
}

header.entry-header .entry-meta, header.entry-header .entry-meta * {
    color: #555;
}
/* Time */
.match-time {
     width: 60px; 
    height: 60px;
    border: 2px solid #d1d5db;
    border-radius: 12px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    flex-flow: column;
    line-height: normal;
    padding-left: 3px;
    padding-right: 3px;
}

.match-count {
    font-size: 14px;
}

/* Main */
.match-main {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  flex: 1;
}

/* Teams */
.match-teams {
    flex: 1;
    display: flex;
    flex-flow: column;
    justify-content: center;
    gap: 7px;
    text-decoration: none !important;
    color: #222;
}

.team {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 0;
}

div#dates-list a {
    text-decoration: none;
}

.team img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
}

/* Score */
.match-score {
  display: grid;
  gap: 8px;
}

.match-score div {
  width: 40px;
  height: 40px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.live_match .match-score div{
  border-color: orange;
}
/* Odds */
.table-scroll-container table .match-odds {
    width: 115px;
    text-align: center;
    font-size: 14px;
    display: flex;
    flex-flow: column;
    justify-content: center;
    line-height: normal;
    margin: 0 auto;
}
.match-predictions .table-scroll-container table .match-odds {
    font-size: 10px;
}
.match-predictions  .table-scroll-container .odds-header {
    /* max-width: 80px; */
    margin: auto;
    gap: 20px;
}
.table-scroll-container table .match-odds.handicap {
    width: 50px;
}
.table-scroll-container .odds-header {
    display: flex;
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 4px;
}

.table-scroll-container .odds-header span {
  flex: 1;
  text-align: center;
}

.table-scroll-container .odds-grid {
  display: flex;
  border: 1px solid #d1d5db;
  border-radius: 16px;
  overflow: hidden;
  gap: 0;
}
.table-scroll-container .odds-grid .odd .win, 
.table-scroll-container .odds-grid .odd .homewin-home, 
.table-scroll-container .odds-grid .odd .drawwin-draw, 
.table-scroll-container .odds-grid .odd .awaywin-away{
    color: #fff;
    background: #2b8fff;
}
.odd {
  flex: 1;
  text-align: center;
}

.odd:not(:last-child) {
  border-right: 1px solid #e5e7eb;
}

.odd-value {
    padding: 0;
    font-weight: 600;
    /* border-bottom: 1px solid #e5e7eb; */
    font-size: 12px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.odd-bookmaker {
    padding: 8px;
    background: #f3f4f6;
    text-align: center;
    display: flex;
    justify-content: center;
}

.odd-bookmaker img {
    height: 16px;
    border-radius: 10px;
}

  .select2-container--default .select2-selection--single {
    background-color: #F5F5FA;
    border: none;
    border-radius: 50px !important;
    padding: 9px 35px 9px 27px !important;
    height: auto !important;
}

  .select2-container--default .select2-selection--single .select2-selection__rendered {
    font-weight: 400;
    font-size: 14px !important;
  }

  .select2-container--default .select2-selection--single .select2-selection__arrow {
    display: none;
  }

  .select2-container--open .select2-dropdown--below {
    top: -2px;
    border-radius: 5px;
  }
.match-odds-inner-head {
    display: none;
}
.table-scroll-container {
    overflow-x: auto;
}

.table-scroll-container table{
    min-width: 550px;
}

#home-football-matches .table-scroll-container table {
    display: table;
    border: none !important;
    min-width: 100% !important;
    border-spacing: 0;
    border-collapse: separate !important;
    border-radius: 10px;
    border: 1px solid #0F8AF91A !important;
    overflow: hidden;
}
div#home-football-matches table th,div#home-football-matches table td {
    border: none;
}

div#home-football-matches table tr.country td {
    padding: 0;
}

div#home-football-matches table th,div#home-football-matches table th *,
.match-predictions table th,.match-predictions table th * {
    font-size: 12px;
    line-height: normal;
}
.ai-body .match-predictions {
    display: none;
}
.match-predictions table th:first-child {
    width: 40%;
    text-align: left;
}

.match-predictions table, .match-predictions table th, .match-predictions table td {
    border: none;
}

.match-predictions table td {
    border-top: 1px solid #e5e7eb;
}

.match-predictions .match-odds.over-under {
    font-size: 12px;
}
.match-predictions table th {
    width: 15%;
    color: #6b7280;
    font-weight: normal;
}
#navmenuc .tabs-ul > li {
    border-radius: 0;
    background: transparent;
    font-weight: normal;
}

#navmenuc .tabs-ul {
    gap: 0;
}

#navmenuc .tabs-ul > li:first-child {
    border-radius: 36px 0 0 36px;
}

#navmenuc .tabs-ul > li:last-child {
    border-radius:  0  36px 36px 0 ;
}

.ai-body .match-predictions.active {
    display: block;
}
div#home-football-matches table th, div#home-football-matches table td {
    border-bottom: 1px solid #0F8AF91A !important;
    padding-left: 10px;
    padding-right: 10px;
}
.inner-table-value {
    text-align: center;
    font-size: 14px;
}
.inner-table-value.pred1 {
    width: 28px;
    height: 28px;
    border: 1px solid #4490ff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    margin: 0 auto;
    color: #4490ff;
    font-weight: 700;
    font-size: 12px;
    line-height: normal;
}


.inner-table-value.pred {
    width: 77px;
    height: 28px;
    border: 1px solid #4490ff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    margin: 0 auto;
    color: #4490ff;
    font-weight: 700;
    font-size: 12px;

}
.inner-table-value.avg-goal {
    width: 45px;
    background: red;
    margin: 0 auto;
    background: #D2E9FF;
    padding: 0;
    border-radius: 7px;
}
.inner-table-value.correct-score {
    width: 45px;
    margin: 0 auto;
    background: #f2f2f2;
    padding: 0;
    border-radius: 7px;
}

div#home-football-matches table tr th:first-child {
    width: 85px;
}
.inner-table-value.over-under {
    width: 58px;
    height: 28px;
    border: 1px solid #4490ff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    margin: 0 auto;
    color: #4490ff;
    font-weight: 700;
    font-size: 12px;
}
.table-scroll-container table .match-odds.over-under {
    /*width: 80px;*/
    margin: 0 auto;
}

.table-scroll-container table .match-odds.over-under .odds-header {
    margin: 0;
    margin: 0 auto;
    gap: 4px;
}


.table-scroll-container .odds-grid.ht-ft-prob {
    min-width: 55px;
    margin: 0 auto;
}

.inner-table-value.handicap {
    width: 77px;
    height: 28px;
    border: 1px solid #4490ff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    margin: 0 auto;
    color: #4490ff;
    font-weight: 700;
    font-size: 12px;
}

@media screen and (max-width:600px) {
 
  .search-box {
    display: none;
}
.header-actions {
    width: 100%;
    justify-content: space-between;
}
.league-grid, .country-grid {
    grid-template-columns: repeat(1, 1fr);
}
.league-menu, .country-menu {
    max-width: 190px;
    top: 47px;
}
.country-menu {
    left: 0;
}
.league-toggle, .country-toggle {
    height: 37px;
}
}