/* Add these styles at the top of the file */

/* Elementor Full Width Template Support */
.elementor-template-full-width .event-single-container,
.elementor-template-full-width .event-archive-container {
  max-width: 100%;
  padding: 0;
}

.elementor-template-full-width .event-header {
  padding: 40px 5%;
}

.elementor-template-full-width .event-meta,
.elementor-template-full-width .event-content,
.elementor-template-full-width .event-footer {
  padding: 30px 5%;
}

.elementor-template-full-width .event-archive-header {
  padding: 0 5% 20px;
}

.elementor-template-full-width .event-grid {
  padding: 0 5%;
}

.elementor-template-full-width .event-pagination {
  padding: 30px 5%;
}

/* Ensure proper spacing in Elementor sections */
.elementor-section .event-single,
.elementor-section .event-archive-container {
  width: 100%;
}

/* Ensure event cards look good in full width */
.elementor-template-full-width .event-grid {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

/* Ensure event details grid looks good in full width */
.elementor-template-full-width .event-details-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

/* CALENDAR HERO SECTION - WITH WHITE BACKGROUND BOX */
.event-calendar-hero-section {
  position: relative;
  background: var(--hero-bg-color, var(--e-global-color-primary));
  padding: 80px 0 60px;
  overflow: hidden;
  color: var(--hero-text-color, #ffffff);
}

/* Hero Heights */
.event-calendar-hero-section[data-height="small"] {
  padding: 60px 0 40px;
}

.event-calendar-hero-section[data-height="medium"] {
  padding: 80px 0 60px;
}

.event-calendar-hero-section[data-height="large"] {
  padding: 100px 0 80px;
}

.event-calendar-hero-section[data-height="extra_large"] {
  padding: 120px 0 100px;
}

/* Hero Background Image */
.hero-background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-background-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hero Overlay */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, var(--hero-overlay-opacity, 0.3));
  background-color: transparent;
  --background-overlay: "";
  background-image: linear-gradient(0.32turn, #ffffff 0%, #ffffff00 55%);
  z-index: 2;
}

.hero-background-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.1;
  background-image: radial-gradient(
      circle at 20% 20%,
      rgba(var(--e-global-color-primary-rgb, 74, 155, 155), 0.3) 0%,
      transparent 50%
    ),
    radial-gradient(circle at 80% 80%, rgba(var(--e-global-color-primary-rgb, 74, 155, 155), 0.2) 0%, transparent 50%),
    radial-gradient(circle at 40% 60%, rgba(var(--e-global-color-primary-rgb, 74, 155, 155), 0.15) 0%, transparent 50%);
  background-size: 400px 400px, 300px 300px, 500px 500px;
  background-position: 0 0, 100% 100%, 50% 50%;
}

.pattern-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="var(--e-global-color-primary, %234a9b9b)" opacity="0.1"/><circle cx="20" cy="20" r="1.5" fill="var(--e-global-color-primary, %234a9b9b)" opacity="0.08"/><circle cx="80" cy="30" r="1" fill="var(--e-global-color-primary, %234a9b9b)" opacity="0.06"/></svg>')
    repeat;
  background-size: 100px 100px;
}

.event-calendar-hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0;
  position: relative;
  z-index: 3;
}

/* WHITE BACKGROUND BOX FOR CONTENT - LEFT ALIGNED */
.hero-content-area {
  background: #FFFFFFCC;
  /*backdrop-filter: blur(10px);*/
  padding: 60px 50px;
  border-radius: 0px;
  /*box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);*/
  max-width: 60%;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 50px;
  align-items: flex-start;
  text-align: left;
}

/* Layout Styles - All layouts now use the white background box with left alignment */
.event-calendar-hero-section[data-layout="centered"] .hero-content-area,
.event-calendar-hero-section[data-layout="split"] .hero-content-area,
.event-calendar-hero-section[data-layout="text_only"] .hero-content-area {
  text-align: left;
  align-items: flex-start;
}

.event-calendar-hero-section[data-layout="image_only"] .hero-content-area {
  justify-content: flex-start;
  align-items: flex-start;
}

.hero-text-section {
  text-align: left;
  width: 100%;
  max-width: 800px;
}

.calendar-main-title {
  font-size: 4rem;
  font-weight: 900;
  color: var(--e-global-color-primary, #4a9b9b)!important;
  margin: 0 0 20px 0;
  line-height: 1.1;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: "Archivo", Sans-serif;
  text-align: left;
}

.calendar-description {
  font-size: 1.2rem;
  color: #333!important;
  line-height: 1.6;
  margin: 0;
  max-width: 100%;
  text-align: left;
}

/* INTEGRATED SEARCH FORM */
.hero-search-section {
  width: 100%;
  max-width: 900px;
}

.integrated-search-form {
  border-radius: 12px;
  padding: 0;
  box-shadow: none;
  border: none;
}

.search-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr auto;
  gap: 20px;
  align-items: center;
}

.search-input-container {
  position: relative;
  display: flex;
  align-items: center;
}

#event-search {
  padding: 15px 15px 15px 45px !important;
}

#event-category-filter {
  border-radius: 3px !important;
}

#event-date-filter {
  padding: 15px 15px 15px 15px !important;
}

.search-submit-btn {
  padding: 15px !important;
  border: 1px solid var(--e-global-color-primary) !important;
}

.search-icon {
  position: absolute;
  left: 15px;
  color: #999;
  z-index: 2;
}

.search-input-container input {
  width: 100%;
  padding: 15px 15px 15px 45px;
  border: 1px solid #e9ecef!important;
  border-radius: 8px;
  font-size: 1rem;
  background: #fff;
  transition: all 0.3s ease;
}

.search-input-container input:focus {
  outline: none;
  border-color: var(--e-global-color-primary);
  box-shadow: 0 0 0 3px rgba(var(--e-global-color-primary-rgb, 74, 155, 155), 0.1);
}

.search-input-container input::placeholder {
  color: #999;
  font-weight: 400;
}

.category-select-container,
.date-select-container {
  position: relative;
}

.category-select-container select,
.date-select-container input {
  width: 100%;
  padding: 15px 40px 15px 15px;
  border: 1px solid #e9ecef!important;
  border-radius: 8px;
  font-size: 1rem;
  background: #ffffff;
  appearance: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.category-select-container select:focus,
.date-select-container input:focus {
  outline: none;
  border-color: var(--e-global-color-primary);
  box-shadow: 0 0 0 3px rgba(var(--e-global-color-primary-rgb, 74, 155, 155), 0.1);
}

.dropdown-arrow {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
  pointer-events: none;
}

.search-submit-btn {
  padding: 15px 20px;
  background: var(--e-global-color-primary);
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 60px;
}

.search-submit-btn:hover {
  background: var(--e-global-color-primary);
  opacity: 0.8;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(var(--e-global-color-primary-rgb, 74, 155, 155), 0.3);
}

.search-submit-btn svg {
  width: 20px;
  height: 20px;
}

/* Responsive Design for Hero Section */
@media (max-width: 1024px) {
  .event-calendar-hero-container {
    padding: 0 30px;
  }

  .hero-content-area {
    padding: 50px 40px;
  }

  .calendar-main-title {
    font-size: 3.5rem;
  }

  .hero-content-area {
    gap: 40px;
  }

  .search-row {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }

  .search-input-container {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .event-calendar-hero-section {
    padding: 60px 0 40px;
  }

  .event-calendar-hero-container {
    padding: 0 20px;
  }

  .hero-content-area {
    padding: 40px 30px;
    border-radius: 8px;
  }

  .hero-text-section {
    text-align: left;
    padding-right: 0;
  }

  .calendar-main-title {
    font-size: 2.8rem;
    letter-spacing: 1px;
    text-align: left;
  }

  .calendar-description {
    font-size: 1.1rem;
    text-align: left;
  }

  .hero-content-area {
    gap: 30px;
  }

  .search-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .search-input-container,
  .category-select-container,
  .date-select-container,
  .search-submit-btn {
    grid-column: 1;
  }

  .search-submit-btn {
    justify-self: stretch;
  }
}

@media (max-width: 480px) {
  .hero-content-area {
    padding: 30px 20px;
  }

  .calendar-main-title {
    font-size: 2.2rem;
  }

  .calendar-description {
    font-size: 1rem;
  }

  .hero-content-area {
    gap: 25px;
  }

  .search-input-container input,
  .category-select-container select,
  .date-select-container input,
  .search-submit-btn {
    padding: 12px 15px;
    font-size: 0.9rem;
  }

  .search-input-container input {
    padding-left: 40px;
  }

  .category-select-container select {
    padding-right: 35px;
  }
}

/* Hero Section Styles */
.event-hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--hero-bg-color, var(--e-global-color-primary));
  color: var(--hero-text-color, #ffffff);
}

/* Hero Heights */
.event-hero-section[data-height="small"] {
  min-height: 300px;
}

.event-hero-section[data-height="medium"] {
  min-height: 400px;
}

.event-hero-section[data-height="large"] {
  min-height: 500px;
}

.event-hero-section[data-height="extra_large"] {
  min-height: 600px;
}

/* Hero Background Image */
.hero-background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-background-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hero Overlay */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, var(--hero-overlay-opacity, 0.3));
  z-index: 2;
}

/* Hero Content Wrapper */
.hero-content-wrapper {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
}

.hero-content {
  display: flex;
  align-items: center;
  min-height: inherit;
  gap: 60px;
  background-color: #ffffffcc;
  width: 60%;
  padding: 40px;
}

/* Split Layout */
.event-hero-section[data-layout="split"] .hero-content {
  justify-content: flex-start;
}

.event-hero-section[data-layout="split"] .hero-text {
  max-width: 600px;
}

/* Centered Layout */
.event-hero-section[data-layout="centered"] .hero-content {
  justify-content: center;
  text-align: center;
}

.event-hero-section[data-layout="centered"] .hero-text {
  max-width: 800px;
}

/* Text Only Layout */
.event-hero-section[data-layout="text_only"] .hero-content {
  justify-content: flex-start;
}

.event-hero-section[data-layout="text_only"] .hero-text {
  max-width: 600px;
}

/* Image Only Layout */
.event-hero-section[data-layout="image_only"] .hero-content {
  justify-content: center;
}

/* Hero Typography */
.hero-title {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.1;
  margin: 0 0 20px 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: 2px;
}

.hero-subtitle {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
  opacity: 0.9;
}

/* Responsive Hero Styles */
@media (max-width: 1024px) {
  .event-hero-section[data-layout="split"] .hero-content {
    justify-content: center;
    text-align: center;
  }

  .event-hero-section[data-layout="split"] .hero-text {
    max-width: 100%;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .event-hero-section[data-height="small"] {
    min-height: 250px;
  }

  .event-hero-section[data-height="medium"] {
    min-height: 300px;
  }

  .event-hero-section[data-height="large"] {
    min-height: 350px;
  }

  .event-hero-section[data-height="extra_large"] {
    min-height: 400px;
  }

  .hero-content {
    gap: 30px;
  }

  .hero-title {
    font-size: 2.5rem;
    letter-spacing: 1px;
  }

  .hero-subtitle {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-content-wrapper {
    padding: 0 20px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }
}

/* NEW MODERN SINGLE EVENT STYLES */

/* Single Event Modern Layout */
.event-single-modern {
  width: 100%;
  background-color: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue",
    sans-serif;
  padding-top: 50px;
}

/* Breadcrumb Navigation */
.event-breadcrumb {
  background-color: #ffffff !important;
  padding: 0;
  color: #ffffff;
}

.event-breadcrumb-container {
  background-color: var(--e-global-color-primary) !important;
  max-width: 1400px;
  margin: 0 auto;
  padding: 42px 50px 10px 50px;
  text-align: var(--text-align);
}

.event-breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.2s ease;
}

.event-breadcrumb a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.event-breadcrumb .separator {
  margin: 0 10px;
  color: rgba(255, 255, 255, 0.6);
}

.event-breadcrumb .current {
  color: #ffffff;
  font-weight: 500;
}

/* Event Header Modern */
.event-header-modern {
  background-color: #ffffff !important;
  color: #ffffff;
  padding: 0 0 40px;
}

.event-header-container {
  background-color: var(--e-global-color-primary) !important;
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 50px 50px 50px;
  text-align: var(--text-align);
}

.event-header-content {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 40px 0 70px 0;
}

.event-featured-image-modern {
  width: 300px;
  height: 300px;
  overflow: hidden;
  flex-shrink: 0;
}

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

.event-title-container {
  flex-grow: 1;
}

.event-title-modern {
  font-size: 3.5rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.event-header-divider {
  height: 1px;
  background-color: #ffffff;
}

/* Event Key Details */
.event-key-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  padding: 50px 0 0 0;
}

.event-key-detail {
  color: #ffffff;
}

.detail-heading {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: "Archivo", Sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--e-global-color-accent);
  font-size: 1.375rem;
}

.detail-content {
  font-size: 1.1rem;
  line-height: 1.4;
}

/* Event Content Modern */
.event-content-modern {
  padding: 60px 0;
  background-color: #ffffff;
}

.event-content-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 50px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
}

.event-main-content {
  color: #333;
}

.event-section-heading {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 20px;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 2px solid #f0f0f0;
  padding-bottom: 10px;
}

.event-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 40px;
}

.event-contact-info {
  margin-bottom: 40px;
}

.contact-item {
  margin-bottom: 10px;
}

.contact-label {
  font-weight: 600;
  margin-right: 10px;
}

.contact-item a {
  color: var(--e-global-color-primary);
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}

.event-taxonomy {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #f0f0f0;
  font-size: 0.95rem;
}

.event-categories,
.event-tags {
  margin-bottom: 10px;
}

.taxonomy-label {
  font-weight: 600;
  margin-right: 10px;
}

.event-taxonomy a {
  color: var(--e-global-color-primary);
  text-decoration: none;
  margin-right: 5px;
}

.event-taxonomy a:hover {
  text-decoration: underline;
}

/* Event Sidebar */
.event-sidebar {
  color: #333;
}

.sidebar-heading {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 15px;
  color: #333;
}

.event-registration-modern {
  margin-bottom: 30px;
}

.registration-button-modern {
  display: inline-block;
  width: 100%;
  padding: 15px 20px;
  background-color: var(--e-global-color-primary);
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.registration-button-modern:hover {
  background-color: var(--e-global-color-primary);
  opacity: 0.8;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.event-add-to-calendar-modern {
  margin-bottom: 30px;
}

.event-add-to-calendar-modern .event-calendar-buttons {
  margin: 0;
}

.event-share {
  margin-bottom: 30px;
}

.share-buttons {
  display: flex;
  gap: 10px;
}

.share-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #f5f5f5;
  color: #ffffff !important;
  text-decoration: none;
  transition: all 0.3s ease;
}

.share-button.facebook {
  background-color: #3b5998;
  color: #ffffff;
}

.share-button.twitter {
  background-color: #1da1f2;
  color: #ffffff;
}

.share-button.linkedin {
  background-color: #0077b5;
  color: #ffffff;
}

.share-button.email {
  background-color: #ea4335;
  color: #ffffff;
}

.share-button:hover {
  transform: translateY(-2px);
}

.share-button.facebook:hover {
  background-color: #3b5998;
  color: #ffffff;
  opacity: 0.8;
}

.share-button.twitter:hover {
  background-color: #1da1f2;
  color: #ffffff;
  opacity: 0.8;
}

.share-button.linkedin:hover {
  background-color: #0077b5;
  color: #ffffff;
  opacity: 0.8;
}

.share-button.email:hover {
  background-color: #ea4335;
  color: #ffffff;
  opacity: 0.8;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .event-title-modern {
    font-size: 3rem;
  }

  .event-content-container {
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .event-header-content {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .event-featured-image-modern {
    width: 250px;
    height: 250px;
  }

  .event-title-modern {
    font-size: 2.5rem;
  }

  .event-key-details {
    grid-template-columns: repeat(2, 1fr);
  }

  .event-content-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .event-sidebar {
    border-top: 1px solid #f0f0f0;
    padding-top: 40px;
  }
}

@media (max-width: 480px) {
  .event-featured-image-modern {
    width: 200px;
    height: 200px;
  }

  .event-title-modern {
    font-size: 2rem;
  }

  .event-key-details {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .detail-heading {
    margin-bottom: 5px;
  }

  .event-section-heading {
    font-size: 1.3rem;
  }

  .event-description {
    font-size: 1rem;
  }
}

/* MODERN EVENT CARDS STYLES */

/* Modern Event Grid */
.event-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
  padding: 20px 0;
}

/* Modern Event Card */
.event-card-modern {
  background: var(--e-global-color-primary);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

/* Card Graphic Section */
.event-card-graphic {
  position: relative;
  height: 160px;
  overflow: hidden;
  background: #333;
}

.event-card-image {
  width: 100%;
  height: 100%;
}

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

.event-card-modern:hover .event-card-image img {
  opacity: 0.9;
}

/* Card Content Section */
.event-card-content-modern {
  color: #ffffff;
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.event-card-title-modern {
  margin: 0 0 15px 0;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.3;
}

.event-card-title-modern a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.event-card-title-modern a:hover {
  color: #e0f2f1;
  text-decoration: none;
}

.event-card-details-modern {
  font-size: 0.9rem;
  line-height: 1.4;
  opacity: 0.95;
  margin-top: auto;
}

.event-card-date-modern,
.event-card-time-modern,
.event-card-location-modern,
.event-card-address-modern {
  margin-bottom: 4px;
}

.event-card-date-modern {
  font-weight: 600;
  font-size: 1rem;
}

.event-card-location-modern {
  font-weight: 500;
}

.event-card-address-modern {
  opacity: 0.8;
  font-size: 0.85rem;
}

/* Responsive Design for Modern Cards */
@media (max-width: 768px) {
  .event-grid-modern {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
  }

  .event-card-graphic {
    height: 140px;
  }

  .event-card-content-modern {
    padding: 15px;
    min-height: 100px;
  }

  .event-card-title-modern {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
  .event-grid-modern {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .event-card-graphic {
    height: 120px;
  }

  .event-card-content-modern {
    padding: 12px;
    min-height: 90px;
  }

  .event-card-title-modern {
    font-size: 1rem;
  }

  .event-card-details-modern {
    font-size: 0.85rem;
  }
}

/* Ensure full width for Elementor */
.elementor-template-full-width .event-grid-modern {
  padding: 20px 5%;
}

/* Calendar View Controls */
.event-view-controls {
  margin-bottom: 30px;
  padding: 20px;
  background: transparent;
  border-radius: 8px;
}

.view-toggle {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.view-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: #ffffff;
  color: #333;
  border: 2px solid #ddd;
  border-radius: 6px;
  font-size: 1em;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.view-btn:hover {
  background: #f0f0f0;
  border-color: var(--e-global-color-primary);
}

.view-btn.active {
  background: var(--e-global-color-primary);
  color: #ffffff;
  border-color: var(--e-global-color-primary);
}

.calendar-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid #ddd;
}

.calendar-navigation {
  display: flex;
  align-items: center;
  gap: 15px;
}

.nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s ease;
}

.nav-btn:hover {
  background: var(--e-global-color-primary);
  opacity: 0.8;
  color: #ffffff;
  border-color: var(--e-global-color-primary);
}

#current-period {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  min-width: 150px;
  text-align: center;
}

.calendar-view-toggle {
  display: flex;
  gap: 5px;
}

.calendar-btn {
  padding: 8px 16px;
  background: #ffffff;
  color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.calendar-btn:hover {
  background: #f0f0f0;
}

.calendar-btn.active {
  background: var(--e-global-color-primary);
  color: #ffffff !important;
  border-color: var(--e-global-color-primary);
}

.today-btn {
  padding: 10px 20px;
  background: #28a745;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.today-btn:hover {
  background: #218838;
}

/* Calendar Views */
.event-calendar-view {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.calendar-loading {
  padding: 40px;
  text-align: center;
  color: #666;
  font-size: 1.1rem;
}

/* Calendar Table Styles */
.calendar-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  table-layout: fixed;
}

.calendar-table th,
.calendar-table td {
  border: 1px solid #e9ecef;
  vertical-align: top;
}

.calendar-table th {
  background: #f8f9fa;
  padding: 15px 10px;
  text-align: center;
  font-weight: 600;
  color: #333;
}

.calendar-table td {
  height: 120px;
  width: 14.28%;
  padding: 8px;
  position: relative;
  overflow: hidden;
  word-wrap: break-word;
}

.calendar-day {
  height: 100%;
  position: relative;
}

.day-number {
  font-weight: 600;
  margin-bottom: 5px;
  color: #333;
}

.calendar-day.today .day-number {
  background: var(--e-global-color-primary);
  color: #ffffff;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.calendar-day.other-month .day-number {
  color: #ccc;
}

.day-events {
  margin-top: 5px;
}

/* Calendar event styles - consolidated and corrected */
.calendar-event {
  background: var(--e-global-color-primary);
  color: #ffffff;
  padding: 2px 4px;
  margin-bottom: 2px;
  border-radius: 3px;
  font-size: 0.65rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
  display: block;
  line-height: 1.2;
  font-family: var(--e-global-typography-text-font-family, inherit);
}

.calendar-event:hover {
  background: var(--e-global-color-primary);
  opacity: 0.8;
}

.event-time {
  font-weight: 600;
  margin-right: 2px;
  font-size: 0.6rem;
  font-family: var(--e-global-typography-text-font-family, inherit);
}

/* Consolidated event title styles */
.event-title {
  font-weight: var(--e-global-typography-text-font-weight, 400);
  font-size: 1rem;
  font-family: var(--e-global-typography-text-font-family, inherit);
}

/* Week View Styles */
.week-table {
  table-layout: fixed;
}

.week-table th {
  width: 12.5%;
}

.week-table .time-column {
  width: 12.5%;
  background: #f8f9fa;
  text-align: center;
  font-weight: 600;
  color: #666;
}

.time-slot {
  padding: 10px;
  border-right: 2px solid #dee2e6;
  font-size: 0.9rem;
}

.day-hour-cell {
  height: 60px;
  padding: 4px;
  position: relative;
}

.week-event {
  background: var(--e-global-color-primary);
  color: #ffffff;
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 0.75rem;
  cursor: pointer;
  margin-bottom: 2px;
  transition: background-color 0.2s ease;
}

.week-event:hover {
  background: var(--e-global-color-primary);
  opacity: 0.8;
}

/* Event Modal */
.event-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.event-modal-content {
  background-color: #ffffff;
  margin: 5% auto;
  padding: 0;
  border-radius: 8px;
  width: 90%;
  max-width: 600px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  position: relative;
}

.event-modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  color: #aaa;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1001;
}

.event-modal-close:hover {
  color: #333;
}

#event-modal-body {
  padding: 30px;
}

#event-modal-body h2 {
  margin: 0 0 20px 0;
  color: #333;
  font-size: 1.5rem;
}

.event-modal-details {
  line-height: 1.6;
}

.event-modal-details p {
  margin: 10px 0;
}

.event-modal-details strong {
  color: var(--e-global-color-primary);
}

.event-modal-excerpt {
  margin: 15px 0;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 6px;
  border-left: 4px solid var(--e-global-color-primary);
}

.event-modal-link {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background: var(--e-global-color-primary);
  color: #ffffff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: background-color 0.2s ease;
}

.event-modal-link:hover {
  background: var(--e-global-color-primary);
  opacity: 0.8;
  color: #ffffff;
  text-decoration: none;
}

/* Responsive Calendar Styles */
@media (max-width: 768px) {
  .calendar-controls {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }

  .calendar-navigation {
    justify-content: center;
  }

  .calendar-view-toggle {
    justify-content: center;
  }

  .view-toggle {
    flex-direction: column;
  }

  .view-btn {
    justify-content: center;
  }

  .calendar-table td {
    height: 80px;
    padding: 4px;
  }

  .calendar-event {
    font-size: 0.7rem;
    padding: 1px 4px;
  }

  .event-modal-content {
    width: 95%;
    margin: 10% auto;
  }

  #event-modal-body {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .calendar-table td {
    height: 60px;
    padding: 2px;
  }

  .day-number {
    font-size: 0.8rem;
    margin-bottom: 2px;
  }

  .calendar-event {
    font-size: 0.65rem;
    padding: 1px 2px;
  }
}

/* Event Listings Plugin - Basic Styles */

/* Use Elementor Global Colors */
:root {
  --event-primary-color: var(--e-global-color-primary, #667eea);
  --event-accent-color: var(--e-global-color-accent, #28a745);
  --event-text-color: var(--e-global-color-text, #333333);
  --event-secondary-color: var(--e-global-color-secondary, #f8f9fa);
  --event-light-color: #ffffff;
  --event-border-color: #e9ecef;
}

/* Single Event Page Styles */
.event-single-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.event-single {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

/* Event Header with Overlay */
.event-header {
  padding: 0;
  background: none;
  color: white;
  position: relative;
}

.event-hero-image {
  position: relative;
  height: 60vh;
  min-height: 400px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.event-hero-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.event-title-overlay {
  position: relative;
  z-index: 3;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.6) 50%,
    rgba(0, 0, 0, 0.2) 80%,
    transparent 100%
  );
  width: 100%;
  padding: 60px 40px 40px;
}

/* Fallback for events without featured image */
.event-header-no-image {
  padding: 60px 40px;
  background: linear-gradient(135deg, var(--event-primary-color) 0%, var(--event-accent-color) 100%);
  color: white;
}

.event-header-no-image .event-title {
  margin: 0;
  font-size: 3.5em;
  font-weight: bold;
  line-height: 1.1;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments for overlay */
@media (max-width: 1024px) {
  .event-hero-image {
    height: 50vh;
    min-height: 350px;
  }

  .event-title-overlay {
    padding: 50px 30px 30px;
  }
}

@media (max-width: 768px) {
  .event-hero-image {
    height: 40vh;
    min-height: 300px;
  }

  .event-title-overlay {
    padding: 40px 20px 25px;
  }

  .event-header-no-image {
    padding: 40px 20px;
  }

  .event-header-no-image .event-title {
    font-size: 2.5em;
  }
}

@media (max-width: 480px) {
  .event-hero-image {
    height: 35vh;
    min-height: 250px;
  }

  .event-title-overlay {
    padding: 30px 15px 20px;
  }

  .event-header-no-image {
    padding: 30px 15px;
  }

  .event-header-no-image .event-title {
    font-size: 2em;
  }
}

/* Ensure proper spacing for Elementor full width */
.elementor-template-full-width .event-header {
  margin: 0;
}

.elementor-template-full-width .event-title-overlay {
  padding-left: 5%;
  padding-right: 5%;
}

.elementor-template-full-width .event-header-no-image {
  padding-left: 5%;
  padding-right: 5%;
}

.event-featured-image {
  margin-top: 20px;
  border-radius: 8px;
  overflow: hidden;
}

.event-featured-image img {
  width: 100%;
  height: auto;
  display: block;
}

.event-meta {
  padding: 30px;
  background: #f8f9fa;
  border-bottom: 1px solid #e9ecef;
}

.event-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin-bottom: 25px;
}

.event-detail {
  padding: 15px;
  background: white;
  border-radius: 6px;
  border-left: 4px solid #667eea;
}

.event-detail strong {
  display: block;
  color: #333333;
  margin-bottom: 5px;
  font-weight: 600;
}

.event-contact {
  margin-top: 25px;
  padding: 20px;
  background: white;
  border-radius: 6px;
  border: 1px solid #e9ecef;
}

.event-contact h3 {
  margin: 0 0 15px 0;
  color: #333333;
  font-size: 1.2em;
}

.event-contact p {
  margin: 8px 0;
}

.event-contact a {
  color: var(--e-global-color-primary);
  text-decoration: none;
}

.event-contact a:hover {
  text-decoration: underline;
}

.event-registration {
  margin-top: 25px;
  text-align: center;
}

.registration-button {
  display: inline-block;
  padding: 15px 30px;
  background: #28a745;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

.registration-button:hover {
  background: #667eea;
  color: white;
  text-decoration: none;
}

.event-content {
  padding: 30px;
  line-height: 1.6;
}

.event-content h2,
.event-content h3,
.event-content h4 {
  color: #333333;
  margin-top: 25px;
  margin-bottom: 15px;
}

.event-content p {
  margin-bottom: 15px;
}

.event-content ul,
.event-content ol {
  margin-bottom: 15px;
  padding-left: 25px;
}

.event-footer {
  padding: 20px 30px;
  background: #f8f9fa;
  border-top: 1px solid #e9ecef;
}

.event-categories,
.event-tags {
  margin-bottom: 10px;
}

.event-categories strong,
.event-tags strong {
  color: #333333;
  margin-right: 10px;
}

.event-categories a,
.event-tags a {
  color: var(--e-global-color-primary);
  text-decoration: none;
  margin-right: 5px;
}

.event-categories a:hover,
.event-tags a:hover {
  text-decoration: underline;
}

/* Event Listings Shortcode Styles */
.event-listings {
  display: grid;
  gap: 20px;
}

.event-item {
  padding: 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  border-left: 4px solid #667eea;
}

.event-item h3 {
  margin: 0 0 10px 0;
  font-size: 1.3em;
}

.event-item h3 a {
  color: #333333;
  text-decoration: none;
}

.event-item h3 a:hover {
  color: #667eea;
}

.event-date,
.event-location {
  margin: 5px 0;
  color: #666;
  font-size: 0.9em;
}

.event-excerpt {
  margin-top: 10px;
  line-height: 1.5;
}

.event-link {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 15px;
  background: #28a745;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-size: 0.9em;
  font-weight: 500;
  transition: background-color 0.2s ease;
}

.event-link:hover {
  background: #667eea;
  color: white;
}

/* Archive Page Styles */
.event-archive-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 0 !important;
}

.event-archive-header {
  margin-bottom: 30px;
}

.event-archive-title {
  margin: 0 0 20px 0;
  font-size: 2.5em;
  color: #333333;
}

/* Grid View */
.event-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.event-card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.event-card-image {
  height: 180px;
  overflow: hidden;
}

.event-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.event-card:hover .event-card-image img {
  transform: scale(1.05);
}

.event-card-content {
  padding: 20px;
}

.event-card-title {
  margin: 0 0 15px 0;
  font-size: 1.2em;
  line-height: 1.3;
}

.event-card-title a {
  color: #333333;
  text-decoration: none;
}

.event-card-title a:hover {
  color: #667eea;
}

.event-card-date,
.event-card-time,
.event-card-location {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: #666;
  font-size: 0.9em;
}

.event-card-excerpt {
  margin: 15px 0;
  color: #555;
  font-size: 0.95em;
  line-height: 1.5;
}

.event-card-link {
  display: inline-block;
  padding: 8px 15px;
  background: #28a745;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-size: 0.9em;
  font-weight: 500;
  transition: background-color 0.2s ease;
}

.event-card-link:hover {
  background: #667eea;
  color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
  .event-single-container,
  .event-archive-container {
    padding: 10px;
  }

  .event-meta,
  .event-content,
  .event-footer {
    padding: 20px;
  }

  .event-details-grid {
    grid-template-columns: 1fr;
  }

  .registration-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .event-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .event-archive-title {
    font-size: 2em;
  }
}

/* Add to Calendar Styles */
.event-add-to-calendar {
  margin-top: 25px;
  text-align: center;
}

/* Dropdown Style */
.add-to-calendar-dropdown {
  position: relative;
  display: inline-block;
}

.add-to-calendar-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--event-primary-color);
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 1em;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.add-to-calendar-btn:hover {
  background: var(--event-accent-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.dropdown-arrow {
  font-size: 0.8em;
  transition: transform 0.3s ease;
}

.add-to-calendar-dropdown.active .dropdown-arrow {
  transform: rotate(180deg);
}

.calendar-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border: 1px solid var(--event-border-color);
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  min-width: 180px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-10px);
  transition: all 0.3s ease;
}

.add-to-calendar-dropdown.active .calendar-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.calendar-option {
  display: block;
  padding: 12px 16px;
  color: var(--event-text-color);
  text-decoration: none;
  border-bottom: 1px solid var(--event-border-color);
  transition: background-color 0.2s ease;
}

.calendar-option:last-child {
  border-bottom: none;
}

.calendar-option:hover {
  background: var(--event-secondary-color);
  color: var(--event-primary-color);
  text-decoration: none;
}

.calendar-option.google:hover {
  background: #4285f4;
  color: white;
}

.calendar-option.outlook:hover {
  background: #0078d4;
  color: white;
}

.calendar-option.yahoo:hover {
  background: #7b0099;
  color: white;
}

.calendar-option.apple:hover {
  background: #007aff;
  color: white;
}

/* Button Style */
.add-to-calendar-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.calendar-label {
  font-weight: 600;
  color: var(--event-text-color);
  margin-right: 10px;
}

.calendar-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 15px;
  background: white;
  color: var(--event-text-color);
  text-decoration: none;
  border: 2px solid var(--event-border-color);
  border-radius: 6px;
  font-size: 0.9em;
  font-weight: 500;
  transition: all 0.3s ease;
}

.calendar-btn:hover {
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.calendar-btn.google:hover {
  /*background: #4285f4;
  border-color: #4285f4;
  color: white;*/
}

.calendar-btn.outlook:hover {
  /*background: #0078d4;
  border-color: #0078d4;
  color: white;*/
}

.calendar-btn.yahoo:hover {
  /*background: #7b0099;
  border-color: #7b0099;
  color: white;*/
}

.calendar-btn.apple:hover {
  background: #007aff;
  border-color: #007aff;
  color: white;
}

/* Icon-only style */
.add-to-calendar-buttons.icon-only .calendar-btn {
  padding: 10px;
  min-width: 40px;
  justify-content: center;
}

/* Responsive Design */
@media (max-width: 768px) {
  .event-single-container,
  .event-archive-container {
    padding: 10px;
  }

  .event-meta,
  .event-content,
  .event-footer {
    padding: 20px;
  }

  .event-details-grid {
    grid-template-columns: 1fr;
  }

  .registration-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .event-grid {
    grid-template-columns: 1fr;
  }
}

/* Archive page calendar buttons */
.event-card .add-to-calendar-buttons {
  margin-top: 15px;
  justify-content: flex-start;
}

.event-card .add-to-calendar-buttons.icon-only {
  gap: 5px;
}

.event-card .calendar-btn {
  padding: 6px 10px;
  font-size: 0.8em;
}

.event-card .add-to-calendar-dropdown .add-to-calendar-btn {
  padding: 8px 12px;
  font-size: 0.9em;
}

/* Simplified Add to Calendar Styles */
.event-calendar-buttons {
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 10px;
  margin: 20px 0;
  flex-wrap: wrap;
}

.calendar-label {
  font-weight: 600;
  color: var(--event-text-color);
  margin-right: 5px;
}

.calendar-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: white;
  color: #fff !important;
  text-decoration: none;
  border: 1px solid var(--event-border-color);
  border-radius: 4px;
  font-size: 0.9em;
  font-weight: 500;
  transition: all 0.2s ease;
}

.calendar-btn:hover {
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.calendar-btn.google:hover {
  /*background: #4285f4;
  border-color: #4285f4;
  color: white;*/
}

.calendar-btn.outlook:hover {
  /*background: #0078d4;
  border-color: #0078d4;
  color: white;*/
}

.calendar-btn.ical:hover {
  /*background: #007aff;
  border-color: #007aff;
  color: white;*/
}

.event-card .event-calendar-buttons {
  margin: 10px 0 0 0;
  justify-content: flex-start;
}

.event-card .calendar-btn {
  padding: 5px 8px;
  font-size: 0.8em;
}

@media (max-width: 768px) {
  .event-calendar-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .calendar-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Search and Filter Styles */
.event-search-container {
  margin-bottom: 20px;
}

.event-search-form {
  background: #f8f9fa;
  padding: 15px;
  border-radius: 8px;
}

.search-input-group {
  display: flex;
  margin-bottom: 15px;
}

.search-input-group input {
  flex: 1;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px 0 0 4px;
  font-size: 1em;
}

.search-button {
  padding: 10px 15px;
  background: #667eea;
  color: white;
  border: none;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
}

.event-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.filter-group label {
  font-weight: 600;
}

.filter-group select,
.filter-group input {
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

/* Pagination */
.event-pagination {
  margin-top: 30px;
  text-align: center;
}

.event-pagination .page-numbers {
  display: inline-block;
  padding: 8px 12px;
  margin: 0 5px;
  border: 1px solid #ddd;
  border-radius: 4px;
  text-decoration: none;
  color: #667eea;
}

.event-pagination .page-numbers.current {
  background: #667eea;
  color: white;
  border-color: #667eea;
}

.event-pagination .page-numbers:hover:not(.current) {
  background: #f8f9fa;
}
