/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

@import "tailwind/application";

/* Global styles */
button,
input[type="submit"],
input[type="button"],
input[type="reset"],
a.cursor-pointer,
.cursor-pointer {
  cursor: pointer;
}

button:disabled,
input[type="submit"]:disabled,
input[type="button"]:disabled {
  cursor: not-allowed;
}

.event-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  padding-left: 1.5rem;
}

.event-timeline::before {
  content: "";
  position: absolute;
  top: 0.5rem;
  bottom: 0.5rem;
  left: 1.7rem;
  width: 2px;
  background: linear-gradient(180deg, #e5e7eb 0%, #cbd5f5 100%);
}

.event-timeline__item {
  display: flex;
  gap: 1rem;
  margin-top: calc(var(--gap-minutes, 0) * 0.6px);
  position: relative;
}

.event-timeline__icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 999px;
  background: #eef2ff;
  border: 2px solid #c7d2fe;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.15);
}

.event-timeline__content {
  background: #f9fafb;
  border-radius: 1rem;
  padding: 0.75rem 1rem;
  border: 1px solid #edf2f7;
  width: 100%;
}

.event-timeline__time {
  font-size: 0.85rem;
  font-weight: 600;
  color: #4c1d95;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.event-timeline__title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #111827;
  margin-top: 0.1rem;
}

.event-timeline__description {
  font-size: 0.9rem;
  color: #4b5563;
  margin-top: 0.25rem;
  line-height: 1.4;
}

/* YouTube Player iframe styles */
#youtube-player {
  position: relative;
  width: 100%;
  height: 100%;
}

#youtube-player iframe {
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  top: 0;
  left: 0;
}