.evenement-uitslagen .event-card {
  background: linear-gradient(135deg, #888, #303030);
}

body.agenda .overzicht .right .event-cards .event-card, .event-modal {
  background: linear-gradient(135deg, #888, #303030);
}

body.agenda .agenda-link a {
  color: #fff !important;
  text-decoration: none;
}

body.agenda .event-card .register-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}

body.agenda .event-card .register-info .datum {
  width: 100%;
  font-size: 0.9rem;
  color: #fff;
  text-align: center;
}

body.agenda .overzicht .right .event-cards .event-card .badge.competitive {
  background-color: #000 !important;
  color: #fff !important;
}

body.agenda .overzicht .right .event-cards .event-card .badge.casual {
  background-color: #fff !important;
  color: #000 !important;
}

body.agenda .event-card .register-button-class {
  background: linear-gradient(135deg, #c01d66 0%, #d76032 100%);
  border: none;
  color: #fff;
  padding: 12px 24px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 25px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  -webkit-box-shadow: 0 4px 8px rgba(192, 29, 102, 0.3);
          box-shadow: 0 4px 8px rgba(192, 29, 102, 0.3);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

body.agenda .event-card .register-button-class::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(255, 255, 255, 0.2)), to(transparent));
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  -webkit-transition: left 0.5s;
  transition: left 0.5s;
}

body.agenda .event-card .register-button-class:hover:not(.disabled) {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 6px 12px rgba(192, 29, 102, 0.5);
          box-shadow: 0 6px 12px rgba(192, 29, 102, 0.5);
  background: linear-gradient(135deg, #b0185a, #c55a2e);
}

body.agenda .event-card .register-button-class:hover:not(.disabled)::before {
  left: 100%;
}

body.agenda .event-card .register-button-class:active:not(.disabled) {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-box-shadow: 0 4px 8px rgba(192, 29, 102, 0.3);
          box-shadow: 0 4px 8px rgba(192, 29, 102, 0.3);
}

body.agenda .event-card .register-button-class.disabled {
  background: #666 !important;
  cursor: not-allowed;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  -webkit-transform: none !important;
          transform: none !important;
}

body.agenda .event-card .register-button-class i {
  font-size: 1.2rem;
  margin-right: 8px;
}

.event-results-header {
  text-align: center;
  margin-bottom: 20px;
  padding: 20px;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border-radius: 8px;
  border: 1px solid #dee2e6;
  -webkit-filter: none;
          filter: none;
}

.event-results-header h4 {
  margin: 0 0 15px 0;
  color: #333;
  font-size: 1.5rem;
  font-weight: 700;
}

.event-results-header .event-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
  font-size: 0.9rem;
  color: #666;
}

.event-results-header .event-meta span {
  background: rgba(255, 255, 255, 0.8);
  padding: 5px 10px;
  border-radius: 15px;
  border: 1px solid #ddd;
}

body.agenda .modal-content .results-table-container .results-table .elo.positive {
  background: linear-gradient(135deg, #28a745, #20c997);
  color: #fff;
}

body.agenda .modal-content .results-table-container .results-table .elo.negative {
  background: linear-gradient(135deg, #dc3545, #fd7e14);
  color: #fff;
}

.results-table-container {
  overflow-x: auto;
  margin: 20px 0;
  -webkit-filter: none;
          filter: none;
}

.results-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.results-table th, .results-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid #eee;
}

.results-table th {
  background: #6c757d;
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.results-table td {
  font-size: 0.9rem;
  color: #333;
}

.results-table td.rank {
  font-weight: bold;
  color: #c01d66;
  width: 60px;
}

.results-table td.name {
  font-weight: 500;
}

.results-table td.elo {
  font-weight: bold;
  padding: 4px 8px;
  border-radius: 4px;
  text-align: center;
}

.results-table td.elo.positive {
  color: #fff;
  background: linear-gradient(135deg, #28a745, #20c997);
  -webkit-box-shadow: 0 2px 4px rgba(40, 167, 69, 0.3);
          box-shadow: 0 2px 4px rgba(40, 167, 69, 0.3);
}

.results-table td.elo.negative {
  color: #fff;
  background: linear-gradient(135deg, #dc3545, #fd7e14);
  -webkit-box-shadow: 0 2px 4px rgba(220, 53, 69, 0.3);
          box-shadow: 0 2px 4px rgba(220, 53, 69, 0.3);
}

.results-table tr:nth-child(even) {
  background: #f8f9fa;
}

.results-table tr:hover {
  background: #e9ecef;
}

@media (max-width: 768px) {
  .results-table-container {
    margin: 10px 0;
  }
  .results-table {
    font-size: 0.8rem;
  }
  .results-table th, .results-table td {
    padding: 8px 12px;
  }
  .results-table td.rank {
    width: 50px;
  }
}
/*# sourceMappingURL=evenement-uitslagen.css.map */