a{
  text-decoration: none;
}

/* CSS */
.button-18 {
  align-items: center;
  background-color: #0A66C2;
  border: 0;
  border-radius: 100px;
  box-sizing: border-box;
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  font-family: -apple-system, system-ui, system-ui, "Segoe UI", Roboto, "Helvetica Neue", "Fira Sans", Ubuntu, Oxygen, "Oxygen Sans", Cantarell, "Droid Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Lucida Grande", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  justify-content: center;
  line-height: 20px;
  max-width: 480px;
  min-height: 40px;
  min-width: 0px;
  overflow: hidden;
  padding: 0px;
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
  touch-action: manipulation;
  transition: background-color 0.167s cubic-bezier(0.4, 0, 0.2, 1) 0s, box-shadow 0.167s cubic-bezier(0.4, 0, 0.2, 1) 0s, color 0.167s cubic-bezier(0.4, 0, 0.2, 1) 0s;
  user-select: none;
  -webkit-user-select: none;
  vertical-align: middle;
}

.button-18:hover,
.button-18:focus { 
  background-color: #16437E;
  color: #ffffff;
}

.button-18:active {
  background: #09223b;
  color: rgb(255, 255, 255, .7);
}

.button-18:disabled { 
  cursor: not-allowed;
  background: rgba(0, 0, 0, .08);
  color: rgba(0, 0, 0, .3);
}
.ticket-card {
  width: 280px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.14);
  background: #fff;
  font-family: 'Segoe UI', Arial, sans-serif;
  overflow: hidden;
  position: relative;
  cursor: pointer; 
  height: 90%;
}

.ticket-image {
  height: 160px;
  overflow: hidden;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.ticket-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Overlay floating above ticket-info */
.overlay-content {
  position: relative;  /* now relative, not absolute */
  width: 210px;
  height: 46px;
  margin: -23px auto 0; /* negative top margin to float above ticket-info */
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.ticket-row {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}

.ticket-date, .ticket-time {
  font-size: 15px;
  font-weight: 500;
  padding: 0 15px;
}

.ticket-divider {
  border-left: 2px solid #d2d8e6;
  height: 20px;
  margin: 0 4px;
}

.ticket-info {
  padding: 32px 18px 18px 18px;
  background: #fff;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  position: relative;
  z-index: 1;
}

.ticket-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #282c42;
}

.ticket-location {
  color: #5b6078;
  font-size: 16px;
  font-weight: 500;
}

.ticket-image img {
  transition: transform 0.3s ease;
}
.ticket-card:hover .ticket-image img {
  transform: scale(1.05);
}


.btn-know-more {
  display: inline-block;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  background-color: #0A66C2; /* nice purple color */
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-know-more:hover {
   background-color: #16437E;
  color: #ffffff;/* slightly darker on hover */
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.events-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.tab-btn {
    padding: 8px 18px;
    background: #f3f4f6;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

.tab-btn.active {
    background: #4f46e5;
    color: #fff;
}

.tab-btn:hover {
    background: #6366f1;
    color: #fff;
}

