/* Event Single Post Page */
.single-event-content {
  padding: 60px 0 80px 0;
  background: #fff;
}
.single-event-content .container {
  max-width: 800px;
  margin: 0 auto;
}
.event-header {
  border-bottom: 1.5px solid #e3e3e3;
  padding-bottom: 32px;
  margin-bottom: 32px;
}
.event-header .back-to-events {
  color: #3853a4;
  font-size: 15px;
  text-decoration: none;
  margin-bottom: 10px;
  display: inline-block;
}
.event-header .event-title {
  font-family: 'Taviraj', serif;
  font-size: 2.2rem;
  color: #3853a4;
  font-weight: 600;
  margin: 0 0 10px 0;
  line-height: 1.2;
}
.event-date-time {
  color: #a67d49;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}
.event-featured-img {
  margin: 32px 0 24px 0;
  text-align: center;
}
.event-featured-img img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 rgba(56, 102, 223, 0.04);
}
.event-venue-name {
  font-size: 18px;
  color: #3853a4;
  font-weight: 700;
  margin-bottom: 18px;
}
.event-body {
  font-size: 18px;
  color: #222;
  line-height: 1.7;
  margin-bottom: 32px;
}
.event-details-box {
  background: #f7f8fa;
  border: 1.5px solid #e3e3e3;
  border-radius: 14px;
  padding: 24px 24px 10px 24px;
  margin-bottom: 24px;
}
.event-details-row {
  display: flex;
}
.event-details-label {
  min-width: 90px;
  color: #3853a4;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 6px;
}
.event-details-value {
  color: #222;
  font-size: 16px;
}

@media (min-width: 769px) {
    .event-details-value {
        display: flex;
        justify-content: space-between;
    }
}
.event-venue-box {
  background: #fff;
  border: 1.5px solid #e3e3e3;
  border-radius: 14px;
  padding: 20px 24px;
  margin-bottom: 24px;
}
.event-map-box {
  margin-bottom: 32px;
  border-radius: 14px;
  overflow: hidden;
  border: 1.5px solid #e3e3e3;
}
.event-add-calendar {
  margin: 32px 0 0 0;
  text-align: left;
}
#ac-btn, .ac-btn {
  display: inline-block;
  background: #3853a4;
  color: #fff;
  font-family: 'RedHatDisplay', sans-serif;
  font-size: 18px;
  font-weight: 700;
  border-radius: 24px;
  padding: 12px 36px;
  text-align: center;
  text-decoration: none;
  transition: background 0.3s;
  box-shadow: none;
  border: none;
}
#ac-btn:hover, .ac-btn:hover {
  background: #477aff;
  color: #fff;
}
.calendar-dropdown-wrapper {
  position: relative;
  display: inline-block;
}
.calendar-dropdown-toggle {
  cursor: pointer;
  min-width: 220px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.calendar-dropdown-menu {
  position: absolute;
  left: 0;
  top: 110%;
  min-width: 220px;
  background: #fff;
  border: 1.5px solid #e3e3e3;
  border-radius: 10px;
  box-shadow: 0 2px 12px 0 rgba(56, 102, 223, 0.08);
  z-index: 10;
  padding: 8px 0;
  margin: 0;
  list-style: none;
}
.calendar-dropdown-menu li {
  width: 100%;
}
.calendar-dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  color: #3853a4;
  font-size: 16px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.calendar-dropdown-menu li a:hover {
  background: #f7f8fa;
  color: #222;
}
.calendar-caret {
  margin-left: 8px;
  font-size: 13px;
}
@media (max-width: 991px) {
  .single-event-content .container {
    max-width: 100%;
    padding: 0 16px;
  }
  .event-header .event-title {
    font-size: 1.5rem;
  }
  .event-details-box, .event-venue-box {
    padding: 16px 10px;
  }
}

#calendar-select {
    padding: .5rem 2.5rem .5rem 1rem;
    border-radius: 4px;
    border: solid 1px;
    background: #fff;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='12' viewBox='0 0 20 20' width='12' xmlns='http://www.w3.org/2000/svg'><path d='M5.516 7.548a.625.625 0 0 1 .884-.032L10 11.01l3.6-3.494a.625.625 0 1 1 .852.914l-4.025 3.91a.625.625 0 0 1-.852 0l-4.025-3.91a.625.625 0 0 1-.032-.882z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 0.5rem center;
    background-size: 18px 18px;
}

.relative-top-2 {
    position: relative;
    top: 2px;
}