/* Event Page Styles */

.event-details {
  margin: 40px 0;
}

.detail-row {
  display: grid;
  grid-template-columns: 300px 1fr;
  margin-bottom: 15px;
}

.detail-label {
  font-weight: 700;
  color: #000;
}

.detail-value {
  color: #333;
}

.detail-value em {
  font-style: italic;
}

.detail-value a {
  color: #000;
  text-decoration: underline;
  transition: color 0.3s;
}

/* Warning Box */
.warning-box {
  margin: 30px 0;
  font-style: italic;
}

.warning-box p {
  font-size: 22px;
  line-height: 1.6;
  color: #333;
}

.warning-box strong {
  font-weight: 700;
  font-style: normal;
}


/* Schedule Table */
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  border: 1px solid #333;
}

.schedule-table td {
  padding: 12px 15px;
  border: 1px solid #333;
  font-size: 20px;
  color: #000;
  vertical-align: top;
}

.schedule-table td:first-child {
  width: 250px;
  font-weight: 700;
}

.schedule-table tbody tr:hover {
  background: #f9f9f9;
}

/* Responsive Design */
@media (max-width: 768px) {
  .detail-row {
    grid-template-columns: 1fr;
    gap: 5px;
  }
  
  .detail-label {
    font-weight: 700;
  }
  
  .schedule-table td {
    display: block;
    width: 100%;
  }
  
  .schedule-table td:first-child {
    width: 100%;
    border-bottom: none;
    padding-bottom: 5px;
  }
  
  .schedule-table tr {
    display: block;
    margin-bottom: 15px;
    border: 1px solid #333;
  }
}