body {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
    background: #f4f8fc;
    color: #333;
  }
  
  /* NAVBAR */
  .navbar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: linear-gradient(to right, #3f51b5, #2196f3);
    padding: 15px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
  }
  .nav-item {
    color: white;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 25px;
    transition: 0.3s;
  }
  .nav-item:hover {
    background: rgba(255,255,255,0.2);
  }
  .nav-item.active {
    background: white;
    color: #3f51b5;
  }
  
  /* SECTION */
  .venue-section {
    padding: 40px 5%;
    max-width: 1200px;
    margin: auto;
  }
  .venue-section h1, .venue-section h2 {
    text-align: center;
  }
  .venue-address {
    text-align: center;
    font-size: 16px;
    margin-bottom: 20px;
  }
  .map-container {
    margin-bottom: 30px;
  }
  
  /* TABLE */
  .table-wrapper {
    overflow-x: auto;
    width: 100%;
    -webkit-overflow-scrolling: touch;
  }
  
  .event-table {
    width: 100%;
    min-width: 700px;
    border-collapse: collapse;
    margin-top: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 12px rgba(0,0,0,0.1);
    border: 2px solid #3f51b5;
  }
  
  .event-table th,
  .event-table td {
    padding: 14px;
    font-size: 15px;
    text-align: center;
    border: 1px solid #ddd;
  }
  
  .event-table th {
    background-color: #3f51b5;
    color: white;
  }
  
  .event-table tr:nth-child(even) {
    background-color: #f0f4ff;
  }
  
  .event-table tr:hover {
    background-color: #e0efff;
  }
  
  .event-table td a {
    text-decoration: none;
    font-weight: bold;
    color: #3f51b5;
  }
  