.f-row {
  display: flex;
}

.a-i-c {
  align-items: center;
}

.jcc {
  justify-content: center;
}

.c-gap-12px {
  column-gap: 12px;
}

.mb-24 {
  margin-bottom: 24px;
}

.p-l-r-8 {
  padding: 0 8px;
}

.fz-24 {
  font-size: 24px;
}

.fw-600 {
  font-weight: 600;
}

.controls-container {
  display: flex;
  gap: 24px;
  font-size: 24px;
  font-weight: bold;
}

.switcher {
  display: flex;
  align-items: center;
}

.arrow {
  cursor: pointer;
  padding: 0 15px;
  user-select: none;
  font-weight: bold;
  color: #8c8c8c;
  transition: ease 0.5s;
}

.arrow:hover {
  color: #fe5900;
}

.label {
  min-width: 140px;
  text-align: center;
  color: #8c8c8c;
  cursor: pointer;
  transition: ease 0.5s;
}

.label:hover {
  color: #fe5900;
}

.calendar-head {
  background: #fe5900;
  align-items: center;
  display: grid;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 10px 0;
  width: 100%;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  color: rgb(255, 255, 255);
  font-variant: small-caps;
}

.calendar-matches {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-template-rows: auto;
  border-style: solid;
  border-width: 0;
  border-color: #e8e8e9;
  border-top-width: 1px;
  border-left-width: 1px;
  background: #f7f7f7;
  color: rgb(21, 11, 11);
  border-right-width: 1px;
  border-bottom-width: 1px;
}

.calendar-day {
  border-style: solid;
  border-color: #e8e8e9;
  display: flex;
  justify-content: space-between;
  height: 205px;
  padding: 16px 0;
  position: relative;
  text-align: center;
  flex-direction: column;
  border-width: 0;
  border-right-width: 1px;
  border-bottom-width: 1px;
  transition: 0.3s;
  border-top-width: 1px;
  border-left-width: 1px;
}

.calendar-team-logo {
  height: 40px;
  width: 40px;
  object-fit: contain;
}

.bg-dark-grey {
  background: #1d1d1d;
}

.calendar-link {
  text-decoration: none;
  color: #fff;
  padding: 5px 10px;
  font-weight: 500;
  font-variant: small-caps;
  background: #0d0d0d;
  text-transform: uppercase;
  transition: ease 0.5s;
}

.calendar-link:hover {
  background: #fe5900;
}

.dropdown-date-menu {
  display: flex;
  flex-direction: column;
  max-height: 200px;
  overflow-y: auto;
  padding: 4px 0;
  background-color: #f7f7f7;
  color: #8c8c8c;
  border-radius: 6px;
  border: 1px solid #e8e8e9;
  font-size: 14px;
  min-width: 100px;
  max-width: 140px;
  width: 100%;
}

.dropdown-date-menu::-webkit-scrollbar {
  width: 8px;
}

.dropdown-date-menu::-webkit-scrollbar-track {
  background: #8c8c8c;
  border-radius: 4px;
}

.dropdown-date-menu::-webkit-scrollbar-thumb {
  background-color: #fe5900;
  border-radius: 4px;
  border: 2px solid transparent;
  background-clip: content-box;
}

.dropdown-date-menu::-webkit-scrollbar-thumb:hover {
  background-color: #1d1d1d;
}
.dropdown-item {
  padding: 6px 12px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  transition: 0.2s;
}

.dropdown-item:hover {
  background-color: rgb(252, 185, 0);
  color: #fff;
}

@media (max-width: 1440px) {
  .calendar-team-logo {
    height: 48px;
    width: 48px;
  }
}

@media (max-width: 1200px) {
  .calendar-head,
  .day-empty {
    display: none;
  }

  .calendar-matches {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    grid-template-rows: auto;
    gap: 24px;
    background-color: #fff;
    border: 0;
  }

  .calendar-day {
    background: #f7f7f7;
  }

  .calendar-team-logo {
    height: 50px;
    width: 50px;
  }
}

@media (max-width: 928px) {
  .calendar-matches {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .controls-container {
    flex-direction: column;
    align-items: center;
    font-size: 20px;
  }
}

@media (max-width: 575px) {
  .calendar-matches {
    grid-template-columns: 1fr;
  }
}

.calendar_filter_wrapper {
  padding: 10px;
  background-color: #fff;
  border: solid 1px #e8e8e9;
  margin-bottom: 30px;
}

.calendar_filter_wrap {
  display: flex;
  justify-content: center;
  column-gap: 25px;
}
