
    .eventNew-header {
      background: linear-gradient(to right, #b89d5b, #f0d88a);
      color: #2d2d2d;
      padding: 35px 15px;
      text-align: center;
    }

    .eventNew-header h1 {
      font-size: 3rem;
      font-weight: bold;
    }

    .eventNew-section {
      max-width: 800px;
      margin: 40px auto;
      background: #ffffff;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
      padding: 30px;
    }

    .eventNew-section h2 {
      text-align: center;
      margin-bottom: 30px;
      font-weight: 600;
      color: #555;
    }

    .eventNew-list {
      list-style: none;
      padding: 0;
    }

    .eventNew-list li {
      padding: 12px 20px;
      border-bottom: 1px solid #eee;
      display: flex;
      justify-content: space-between;
      font-size: 16px;
    }

    .eventNew-list li:last-child {
      border-bottom: none;
    }

    footer .bi {
      font-size: 1.4rem;
    }
    .event-section table {
  font-size: 0.9rem;
}

/* event schedule calendar  */



  .event-calendar {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .event-item {
    display: flex;
    align-items: center;
    background: #f5f9ff;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgb(0 0 0 / 0.1);
    padding: 8px 12px;
    transition: background 0.3s ease;
  }

  .event-item:hover {
    background: #d0e6ff;
  }

  .date-box {
    width: 60px;
    height: 60px;
    background:rgb(23, 143, 159);
    color: white;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    font-weight: 700;
    user-select: none;
  }

  .date-box .month {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
  }

  .date-box .day {
    font-size: 24px;
    line-height: 1;
  }

  .event-name {
    font-size: 1rem;
    color: #333;
    flex: 1;
  }

  /* Responsive */
  @media (max-width: 480px) {
    .event-section {
      max-width: 100%;
      padding: 0 15px;
    }

    .date-box {
      width: 50px;
      height: 50px;
      margin-right: 12px;
    }

    .date-box .month {
      font-size: 12px;
    }

    .date-box .day {
      font-size: 20px;
    }

    .event-name {
      font-size: 0.9rem;
    }
  }

