/* ======================
   EVENT LIST
====================== */
.container{
  width:95%;
  max-width:1200px;
  margin:20px auto;
}

.event-card {
  background: #fff;
  border-radius: 16px;
  margin: 14px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0,0,0,.08);
}

.event-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.event-body {
  padding: 14px;
}

.event-title {
  font-size: 17px;
  font-weight: 600;
}

.event-meta {
  font-size: 13px;
  color: #666;
  margin: 6px 0;
}


.book-btn{
  display:inline-block;
  background:#ff3d00;
  color:#fff;
  padding:8px 14px;
  border-radius:10px;
  font-size:14px;
}

/* ======================
   SEARCH BAR (APP STYLE)
====================== */
.search-bar {
  display: flex;
  gap: 10px;
  margin: 16px 14px;
}

.search-bar input,
.search-bar select {
  height: 44px;
  border-radius: 12px;
  border: 1px solid #ddd;
  padding: 0 14px;
  font-size: 14px;
  background: #fff;
}

.search-bar input {
  flex: 2;
}

.search-bar select {
  flex: 1;
}

.search-bar input:focus,
.search-bar select:focus {
  outline: none;
  border-color: #ff3d00;
}
