body {
  font-family: Arial, sans-serif;
  background: url('forestbridge.jpg') no-repeat center center fixed;
  background-size: cover;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 900px;
  margin: 2rem auto;
  padding: 20px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.logo-center {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  margin-bottom: 30px;
}

.calendar-header {
  text-align: center;
  margin-bottom: 20px;
}

.calendar-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
  max-width: 800px;
}

.calendar-table th,
.calendar-table td {
  border: 1px solid #ddd;
  padding: 10px 8px;
  text-align: left;
  vertical-align: middle;
}

.calendar-table td:first-child,
.calendar-table th:first-child {
  text-align: center;
  width: 110px;
}

.calendar-table th {
  background-color: #f2f2f2;
  text-align: center;
}

.teams-icon {
  width: 32px;
  height: 32px;
  vertical-align: middle;
  margin-right: 8px;
}

.event-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.disabled-link {
  pointer-events: none;
  opacity: 0.5;
  cursor: default;
}

.admin-panel {
  text-align: center;
  max-width: 1000px;
  margin: 20px auto;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.admin-controls {
  align-items: center;
  margin: 20px 0;
  padding: 20px;
  background: #f5f5f5;
  border-radius: 4px;
}

.admin-controls button {
  padding: 10px 20px;
  background: #007bff;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin-left: 10px;
}

.admin-controls button:hover {
  background: #0056b3;
}

.back-link {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background: #6c757d;
  color: white;
  text-decoration: none;
  border-radius: 4px;
}

.back-link:hover {
  background: #545b62;
}

.delete-btn {
  background-color: #dc3545;
  color: white;
  border: none;
  padding: 5px 10px;
  border-radius: 4px;
  cursor: pointer;
}

.delete-btn:hover {
  background-color: #c82333;
}

#eventsTable {
  width: 100%;
  margin-top: 20px;
}

#eventsTable td {
  padding: 10px;
  vertical-align: middle;
}

#eventsTable th {
  background-color: #f8f9fa;
  padding: 10px;
}

.admin-controls {
  margin-bottom: 30px;
  padding: 20px;
  background-color: #f8f9fa;
  border-radius: 8px;
}

.admin-controls label {
  display: block;
  margin-bottom: 10px;
}