/* =====================================================
   Events — Listing Grid, Cards, Filters, Pager, and Detail Page
   Design tokens from base.css:
     --color-primary       #1a1a2e
     --color-primary-light #16213e
     --color-accent        #e94560
     --color-surface       #ffffff
     --color-surface-alt   #f8f9fa
     --color-border        #dee2e6
     --color-text-muted    #6c757d
   ===================================================== */


/* =====================================================
   EVENTS PAGE — Hero Banner
   ===================================================== */

.events-page-hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 60%, #0f3460 100%);
  color: white;
  padding: 48px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.events-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 120%, rgba(233, 69, 96, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.events-page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width-content);
  margin-inline: auto;
}

.events-page-hero__title {
  font-size: clamp(1.75rem, 4vw, var(--font-2xl));
  font-weight: var(--font-weight-bold);
  color: white;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.events-page-hero__subtitle {
  font-size: var(--font-lg);
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}


/* =====================================================
   EVENTS PAGE — Container
   ===================================================== */

.events-container {
  /* padding-inline viene del .main-content__container.container externo */
  padding-block: 32px;
}

@media (max-width: 600px) {
  .events-page-hero {
    padding: 40px 20px;
  }

  .events-container {
    padding-block: 20px 40px;
  }
}


/* =====================================================
   EVENTS PAGE — Filter Bar
   The exposed form lives inside .events-filter-bar.
   Inside the form we use .ef-field and .ef-actions
   to avoid collisions with Drupal's .form-item wrappers.
   ===================================================== */

.events-filter-bar {
  margin-bottom: 32px;
}

.events-filter-bar form {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: flex-end;
  gap: 16px;
  flex-wrap: wrap;
}

/* Each filter field block */
.ef-field {
  flex: 1 1 200px;
  min-width: 160px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ef-field__label {
  display: block;
  font-size: 0.72rem;
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin: 0;
}

/* Drupal wraps the actual input in .form-item inside .ef-field__control */
.ef-field__control .form-item {
  margin: 0;
  padding: 0;
}

.ef-field__control select,
.ef-field__control input[type="text"],
.ef-field__control input[type="search"],
.ef-field__control input[type="date"] {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
  font-size: var(--font-sm);
  font-family: var(--font-family);
  color: var(--color-primary);
  background: var(--color-surface);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  appearance: none;
  -webkit-appearance: none;
  line-height: 1.4;
}

/* Custom chevron for select */
.ef-field__control select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236c757d' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}

.ef-field__control select:focus,
.ef-field__control input[type="text"]:focus,
.ef-field__control input[type="search"]:focus,
.ef-field__control input[type="date"]:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(233, 69, 96, 0.12);
}

/* Actions: Apply + Reset buttons */
.ef-actions {
  display: flex;
  gap: 8px;
  align-items: flex-end;
  flex-shrink: 0;
}

/* Apply / submit button */
.ef-actions input[type="submit"],
.ef-actions button[type="submit"],
.ef-actions .form-submit {
  padding: 10px 22px;
  background: var(--color-accent);
  color: white;
  border: 1.5px solid var(--color-accent);
  border-radius: var(--radius);
  font-size: var(--font-sm);
  font-weight: var(--font-weight-semibold);
  font-family: var(--font-family);
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--transition-fast), border-color var(--transition-fast);
  line-height: 1.4;
}

.ef-actions input[type="submit"]:hover,
.ef-actions button[type="submit"]:hover,
.ef-actions .form-submit:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
}

/* Reset button */
.ef-actions input[type="reset"],
.ef-actions .views-reset-button input[type="submit"],
.ef-actions .views-reset-button .form-submit {
  padding: 10px 18px;
  background: transparent;
  color: var(--color-text-muted);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
  font-size: var(--font-sm);
  font-weight: var(--font-weight-medium);
  font-family: var(--font-family);
  cursor: pointer;
  white-space: nowrap;
  transition: border-color var(--transition-fast), color var(--transition-fast);
  line-height: 1.4;
}

.ef-actions input[type="reset"]:hover,
.ef-actions .views-reset-button input[type="submit"]:hover,
.ef-actions .views-reset-button .form-submit:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

/* Responsive: stack on narrow screens */
@media (max-width: 640px) {
  .events-filter-bar form {
    padding: 16px;
    gap: 12px;
  }

  .ef-field {
    flex: 1 1 100%;
    min-width: 0;
  }

  .ef-actions {
    width: 100%;
  }

  .ef-actions input[type="submit"],
  .ef-actions button[type="submit"],
  .ef-actions .form-submit {
    flex: 1;
    text-align: center;
  }
}


/* =====================================================
   EVENTS LISTING — Grid
   ===================================================== */

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* The wrapper div added by views-view-unformatted is a grid child */
.events-grid__item {
  display: contents; /* lets the inner <article> be the grid cell */
}

@media (max-width: 992px) {
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .events-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}


/* =====================================================
   EVENT CARD
   image top → body: badge / title / meta / price / CTA
   ===================================================== */

.event-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.event-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

/* ── Image ── */

.event-card__image-wrap {
  overflow: hidden;
  background: var(--color-primary);
  height: 190px;
  flex-shrink: 0;
  position: relative;
}

.event-card__image-wrap a {
  display: block;
  width: 100%;
  height: 100%;
}

/* Drupal field wrappers + <picture> must fill the anchor.
   Also covers inner <a> if image_link is ever re-enabled. */
.event-card__image-wrap .field,
.event-card__image-wrap .field__item,
.event-card__image-wrap picture,
.event-card__image-wrap .field > a,
.event-card__image-wrap .field__item > a {
  display: block;
  width: 100%;
  height: 100%;
}

.event-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

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

.event-card__image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #b0bec5 0%, #78909c 100%);
  color: rgba(255, 255, 255, 0.6);
}

/* ── Body ── */

.event-card__body {
  padding: 18px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.event-card__body > .badge {
  align-self: flex-start;
}

/* ── Badge variants ── */

.badge {
  display: inline-block;
  padding: 3px 9px;
  border-radius: var(--radius);
  font-size: 0.72rem;
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.4;
}

/* on_sale → badge--on-sale (Twig replaces underscore with hyphen) */
.badge--on-sale   { background: #e8f5e9; color: #2e7d32; }
.badge--upcoming  { background: #e3f2fd; color: #1565c0; }
.badge--sold-out  { background: #fce4ec; color: #c62828; }
.badge--cancelled { background: #f5f5f5; color: #616161; }

/* ── Title ── */

.event-card__title {
  font-size: 1.05rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.3;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.event-card__title a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.event-card__title a:hover {
  color: var(--color-accent);
}

/* ── Meta (date / venue) ── */

.event-card__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.event-card__meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--font-sm);
  color: var(--color-text-muted);
  line-height: 1.4;
}

.event-card__meta-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  opacity: 0.7;
}

/* ── Price ── */

.event-card__price {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-top: auto;
  padding-top: 4px;
}

.event-card__price-label {
  font-size: 0.72rem;
  font-weight: var(--font-weight-medium);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.event-card__price-value,
.event-card__price .field--name-field-event-price,
.event-card__price .field__item {
  font-weight: var(--font-weight-bold);
  color: var(--color-accent);
  font-size: var(--font-lg);
}

/* ── CTA ── */

.event-card__cta-wrap {
  margin-top: 14px;
}


/* =====================================================
   EVENTS LISTING — Empty State
   ===================================================== */

.events-empty {
  text-align: center;
  padding: 80px 32px;
  color: var(--color-text-muted);
}

.events-empty__icon {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  opacity: 0.3;
  color: var(--color-text-muted);
}

.events-empty__title {
  font-size: var(--font-xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  margin: 0 0 8px;
}

.events-empty__message {
  font-size: var(--font-md);
  margin: 0;
}


/* =====================================================
   EVENTS LISTING — Pager
   Drupal full pager via Olivero's pager.html.twig:
     nav.pager > ul.pager__items > li.pager__item

   Mini-pager custom classes (.events-pager__*) kept
   here for future use if the view switches pager type.
   ===================================================== */

.events-pager-wrapper {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}

/* ── Drupal full pager (Olivero template) ── */

.events-pager-wrapper .pager {
  display: inline-block;
}

.events-pager-wrapper .pager__items {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.events-pager-wrapper .pager__item {
  display: flex;
  align-items: center;
}

/* Every pager link and the active span share the same button look */
.events-pager-wrapper .pager__link,
.events-pager-wrapper .pager__item--active {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: var(--radius);
  border: 1.5px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-primary);
  text-decoration: none;
  font-size: var(--font-sm);
  font-weight: var(--font-weight-semibold);
  font-family: var(--font-family);
  line-height: 1;
  transition: background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
  cursor: pointer;
  user-select: none;
}

/* Icons inside prev/next/last links */
.events-pager-wrapper .pager__link svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  fill: currentColor;
}

/* Hover */
.events-pager-wrapper .pager__link:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: white;
  text-decoration: none;
}

/* Active / current page */
.events-pager-wrapper .pager__item--active {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: white;
  cursor: default;
  font-weight: var(--font-weight-bold);
}

/* ── Custom mini-pager classes (.events-pager__*) ── */

.events-pager {
  display: inline-block;
}

.events-pager__list {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.events-pager__item {
  display: flex;
  align-items: center;
}

.events-pager__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: var(--radius);
  border: 1.5px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-primary);
  text-decoration: none;
  font-size: var(--font-sm);
  font-weight: var(--font-weight-semibold);
  font-family: var(--font-family);
  line-height: 1;
  transition: background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
  cursor: pointer;
  user-select: none;
}

.events-pager__btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

a.events-pager__btn:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: white;
  text-decoration: none;
}

.events-pager__btn--active {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: white;
  cursor: default;
  font-weight: var(--font-weight-bold);
}

.events-pager__btn--disabled,
.events-pager__item.is-disabled .events-pager__btn {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}


/* =====================================================
   EVENTS LISTING — More link
   ===================================================== */

.events-more {
  text-align: center;
  margin-top: 32px;
}

.events-more a {
  display: inline-block;
  padding: 10px 28px;
  background: transparent;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
  border-radius: var(--radius);
  font-size: var(--font-sm);
  font-weight: var(--font-weight-semibold);
  text-decoration: none;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.events-more a:hover {
  background: var(--color-accent);
  color: white;
  text-decoration: none;
}


/* =====================================================
   EVENT DETAIL PAGE
   ===================================================== */

/* Event hero — image with overlay */
.event-detail__hero {
  position: relative;
  height: 320px;
  overflow: hidden;
  background: var(--color-primary);
}

.event-detail__hero-image {
  position: absolute;
  inset: 0;
}

/* Drupal field wrappers + <picture> must fill the container */
.event-detail__hero-image .field,
.event-detail__hero-image .field__item,
.event-detail__hero-image picture {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
}

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

.event-detail__hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 32px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
  color: white;
}

.event-detail__hero-overlay .container {
  width: 100%;
}

.event-detail__title {
  font-size: clamp(1.5rem, 3vw, var(--font-2xl));
  font-weight: var(--font-weight-bold);
  color: white;
  margin: var(--spacing-2) 0;
  line-height: 1.2;
}

.event-detail__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: rgba(255, 255, 255, 0.75);
  font-size: var(--font-sm);
  margin-top: var(--spacing-2);
}

/* ── Two-column layout ── */

.event-detail__layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
  padding: 32px;
  max-width: var(--max-width-content);
  margin-inline: auto;
}

@media (max-width: 900px) {
  .event-detail__layout {
    grid-template-columns: 1fr;
    padding: 20px 16px;
  }

  .event-detail__sidebar {
    order: -1;
    position: static !important;
  }
}

/* Description section */
.event-detail__description h2 {
  font-size: var(--font-xl);
  font-weight: var(--font-weight-bold);
  margin-bottom: 12px;
  color: var(--color-primary);
}

.event-detail__description p {
  color: #444;
  line-height: 1.7;
  margin-bottom: 16px;
}

/* ── Sidebar card ── */

.event-detail__sidebar {
  position: sticky;
  top: 24px;
  align-self: start;
}

/* ── Your Selection card ── */

.order-summary {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}

.order-summary__title {
  font-size: var(--font-sm);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  margin: 0 0 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--color-border);
}

/* Info rows — label | value grid */

.order-summary__info {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 16px;
}

.order-summary__row {
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: baseline;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: var(--font-sm);
}

.order-summary__row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.order-summary__row > span {
  font-size: 0.7rem;
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  padding-top: 2px;
  white-space: nowrap;
}

/* Drupal renders divs inside <strong> — normalize them */
.order-summary__row strong,
.order-summary__row strong .field,
.order-summary__row strong .field__item,
.order-summary__row strong time,
.order-summary__row strong span {
  display: block;
  font-weight: var(--font-weight-semibold);
  font-size: var(--font-sm);
  color: var(--color-primary);
  line-height: 1.4;
  word-break: break-word;
}

.order-summary__row strong .field__label {
  display: none;
}

/* Selected seats */

.order-summary__selected-label {
  font-size: 0.7rem;
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  margin: 16px 0 8px;
}

.selected-seats {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.selected-seat-tag {
  display: inline-flex;
  align-items: center;
  background: #e3f2fd;
  color: #1565c0;
  border-radius: var(--radius);
  padding: 3px 10px;
  font-size: var(--font-sm);
  font-weight: var(--font-weight-semibold);
}

/* Empty state */

.order-summary__empty {
  color: var(--color-text-muted);
  font-size: var(--font-sm);
  padding: 20px 0 12px;
  text-align: center;
  line-height: 1.5;
}

.order-summary__empty p { margin: 0 0 4px; }

.order-summary__hint {
  font-size: var(--font-sm);
  color: var(--color-text-muted);
  margin: 4px 0 0;
  opacity: 0.8;
}

/* Seat breakdown list */

.order-summary__seats {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
  border-top: 1px solid var(--color-border);
}

.order-summary__seat-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: var(--font-sm);
}

/* Total row */

.order-summary__total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  border-top: 2px solid var(--color-border);
  padding-top: 14px;
  margin-top: 8px;
}

.order-summary__total > span:first-child {
  font-size: var(--font-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.order-summary__total .price,
.order-summary__total strong {
  font-size: var(--font-xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-accent);
  white-space: nowrap;
}

/* CTA */

.order-summary__checkout {
  width: 100%;
  padding: 12px 16px;
  font-size: var(--font-md);
  margin-top: 16px;
}

.order-summary__disclaimer {
  font-size: 0.7rem;
  color: var(--color-text-muted);
  text-align: center;
  margin-top: 8px;
  line-height: 1.4;
}

/* Responsive */

@media (max-width: 900px) {
  .order-summary { padding: 16px; }
}

@media (max-width: 900px) and (min-width: 480px) {
  .order-summary__info {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .order-summary__row {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 10px 12px 10px 0;
    border-bottom: none;
    border-right: 1px solid var(--color-border);
  }
  .order-summary__row:nth-child(even) {
    border-right: none;
    padding-left: 12px;
    padding-right: 0;
  }
  .order-summary__row:last-child { border-bottom: none; }
}

@media (max-width: 479px) {
  .order-summary__row {
    grid-template-columns: 1fr;
    gap: 2px;
  }
  .order-summary__total .price,
  .order-summary__total strong {
    font-size: var(--font-lg);
  }
}


/* =====================================================
   EVENT DETAIL — Status Notices
   Alert-style boxes displayed when tickets are not
   purchasable: upcoming / sold_out / coming_soon / cancelled.
   Concept: Bootstrap-style alert with thick left border.
   ===================================================== */

.event-status-notice {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  border-radius: var(--radius);
  border: 1px solid;
  border-left-width: 4px;
  margin-top: 28px;
}

.event-status-notice__icon {
  flex-shrink: 0;
  margin-top: 1px;
}

.event-status-notice__icon svg {
  width: 20px;
  height: 20px;
  display: block;
}

.event-status-notice__body {
  flex: 1;
}

.event-status-notice__title {
  display: block;
  font-size: var(--font-sm);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 4px;
}

.event-status-notice__message {
  font-size: var(--font-sm);
  margin: 0;
  line-height: 1.55;
}

/* ── Per-status variants ── */

.event-status-notice--upcoming {
  background: #e3f2fd;
  border-color: #90caf9;
  border-left-color: #1565c0;
  color: #0d47a1;
}

.event-status-notice--sold-out {
  background: #fce4ec;
  border-color: #f48fb1;
  border-left-color: #c62828;
  color: #b71c1c;
}

.event-status-notice--coming-soon {
  background: #fff8e1;
  border-color: #ffe082;
  border-left-color: #f57c00;
  color: #e65100;
}

.event-status-notice--cancelled {
  background: #f5f5f5;
  border-color: #e0e0e0;
  border-left-color: #616161;
  color: #424242;
}
