.sport-events-container {
  margin-top: 20px;
}

.sport-events-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 15px;
}
.sport-events-header h4 {
  margin: 0;
}

.sport-events-view-toggle {
  display: flex;
  gap: 8px;
  align-items: center;
}

.sport-events-view-toggle__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 8px;
  transition: all 0.2s ease;
}
.sport-events-view-toggle__button i {
  font-size: 1.2rem;
}
.sport-events-view-toggle__button:hover:not(.active) {
  background-color: #f8f9fa;
  border-color: var(--bs-primary);
}
.sport-events-view-toggle__button.active {
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
  color: white;
}

.sport-events-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .sport-events-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .sport-events-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.sport-events-list--list-view {
  grid-template-columns: 1fr;
  gap: 20px;
}
.sport-events-list--list-view .sport-event-card {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr auto;
  gap: 0;
}
.sport-events-list--list-view .sport-event-card .sport-event-card__header {
  grid-column: 1/-1;
  grid-row: 1;
}
.sport-events-list--list-view .sport-event-card .sport-event-card__body {
  grid-column: 1;
  grid-row: 2;
}
.sport-events-list--list-view .sport-event-card .sport-event-card__footer {
  grid-column: 2;
  grid-row: 2;
  border-top: none;
  border-left: 1px solid #e9ecef;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  min-width: 200px;
}
@media (max-width: 768px) {
  .sport-events-list--list-view .sport-event-card .sport-event-card__footer {
    grid-column: 1/-1;
    grid-row: 3;
    border-left: none;
    border-top: 1px solid #e9ecef;
    min-width: auto;
  }
}
.sport-events-list--list-view .sport-event-card .sport-event-card__button {
  width: auto;
  min-width: 180px;
}
@media (max-width: 768px) {
  .sport-events-list--list-view .sport-event-card .sport-event-card__button {
    width: 100%;
  }
}
.sport-event-card {
  background: white;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.sport-event-card:hover {
  border-color: var(--bs-primary);
  box-shadow: 0 4px 12px rgba(var(--bs-primary-rgb), 0.15);
  transform: translateY(-2px);
}

.sport-event-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e9ecef;
}

.sport-event-card__title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: #212529;
  line-height: 1.4;
  flex: 1;
}

.sport-event-card__status {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  background-color: #6c757d;
  color: white;
}
.sport-event-card__status--nosale, .sport-event-card__status--not-started {
  background-color: #ffc107;
  color: #212529;
}
.sport-event-card__status--started, .sport-event-card__status--in-progress {
  background-color: #28a745;
  color: white;
}
.sport-event-card__status--soldout {
  background-color: #dc3545;
  color: white;
}
.sport-event-card__status--cancelled {
  background-color: #6c757d;
  color: white;
}

.sport-event-card__body {
  padding: 20px;
  flex: 1;
}

.sport-event-card__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sport-event-card__dates-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 576px) {
  .sport-event-card__dates-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.sport-event-card__info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.sport-event-card__info-item i {
  color: var(--bs-primary);
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.sport-event-card__info-item--full {
  width: 100%;
}

.sport-event-card__info-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.sport-event-card__info-label {
  font-size: 0.85rem;
  color: #6c757d;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.sport-event-card__info-value {
  font-size: 0.95rem;
  color: #212529;
  font-weight: 500;
  line-height: 1.4;
}

.sport-event-card__footer {
  padding: 16px 20px;
  border-top: 1px solid #e9ecef;
  background-color: #f8f9fa;
}

.sport-event-card__button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.2s ease;
}
.sport-event-card__button i {
  font-size: 1.1rem;
}
.sport-event-card__button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(var(--bs-primary-rgb), 0.3);
}
.sport-event-card__button:active {
  transform: translateY(0);
}

.sport-events-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 24px 0;
  margin-top: 32px;
  border-top: 2px solid #e9ecef;
}
@media (max-width: 576px) {
  .sport-events-pagination {
    flex-direction: column;
    gap: 16px;
  }
}

.sport-events-pagination__button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.2s ease;
}
.sport-events-pagination__button:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.sport-events-pagination__button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.sport-events-pagination__button i {
  font-size: 1rem;
}

.sport-events-pagination__info {
  font-size: 0.95rem;
  color: #495057;
  font-weight: 500;
}

.sport-events-pagination__current {
  font-weight: 700;
  color: var(--bs-primary);
  font-size: 1.1rem;
}

.sport-events-pagination__total {
  font-weight: 600;
  color: #212529;
}

.sport-events-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  text-align: center;
  color: #6c757d;
}
.sport-events-empty i {
  font-size: 3rem;
  margin-bottom: 16px;
  color: #adb5bd;
}
.sport-events-empty p {
  font-size: 1.1rem;
  margin: 0;
  color: #495057;
}

.sport-events-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 60px 20px;
  min-height: 300px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 12px;
  border: 2px dashed #dee2e6;
  margin: 20px 0;
}
.sport-events-loading i {
  font-size: 3rem;
  color: var(--bs-primary);
  animation: spin 1s linear infinite;
}
.sport-events-loading span {
  font-size: 1.1rem;
  font-weight: 500;
  color: #495057;
  letter-spacing: 0.5px;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22sport-events.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22AAEA;EACI;;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;;;AAIR;EACI;EACA;EACA;;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;;AAGJ;EACI;EACA;;AAGJ;EACI;EACA;EACA;;;AAIR;EACI;EACA;EACA;EACA;;AAEA;EANJ;IAOQ;;;AAGJ;EAVJ;IAWQ;IACA;;;AAIJ;EACI;EACA;;AAEA;EACI;EACA;EACA;EACA;;AAEA;EACI;EACA;;AAGJ;EACI;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EAXJ;IAYQ;IACA;IACA;IACA;IACA;;;AAIR;EACI;EACA;;AAEA;EAJJ;IAKQ;;;AAWpB;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;;;AAIR;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EAEI;EACA;;AAGJ;EAEI;EACA;;AAGJ;EACI;EACA;;AAGJ;EACI;EACA;;;AAIR;EACI;EACA;;;AAGJ;EACI;EACA;EACA;;;AAGJ;EACI;EACA;EACA;;AAEA;EALJ;IAMQ;IACA;;;;AAIR;EACI;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;;AAGJ;EACI;;;AAIR;EACI;EACA;EACA;EACA;;;AAGJ;EACI;EACA;EACA;EACA;EACA;;;AAGJ;EACI;EACA;EACA;EACA;;;AAGJ;EACI;EACA;EACA;;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;;AAGJ;EACI;EACA;;AAGJ;EACI;;;AAKR;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EATJ;IAUQ;IACA;;;;AAIR;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;;AAGJ;EACI;EACA;;AAGJ;EACI;;;AAIR;EACI;EACA;EACA;;;AAGJ;EACI;EACA;EACA;;;AAGJ;EACI;EACA;;;AAIJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;;AAGJ;EACI;EACA;EACA;;;AAKR;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;;;AAIR;EACI;IACI;;EAEJ;IACI%22,%22file%22:%22sport-events.css%22%7D */
