@import "https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap";

/* sass:/home/martin/sp/tcalendar/app/javascript/styles/event-calendar.css */
.ec-wrapper {
  display: flex;
  flex-direction: column;
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
}
.ec-header-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 18px;
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
  border-radius: 16px 16px 0 0;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}
.ec-header-logo {
  height: 36px;
  width: auto;
  flex-shrink: 0;
}
.ec-header-title {
  font-size: 18px;
  font-weight: 700;
  color: #1e293b;
  letter-spacing: -0.02em;
  flex: 1;
}
.ec-lang-select {
  flex-shrink: 0;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 5px 26px 5px 10px;
  font-size: 13px;
  font-weight: 600;
  color: #1e293b;
  background: #f8fafc url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%2394a3b8'/%3E%3C/svg%3E") no-repeat right 8px center;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  font-family: inherit;
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
}
.ec-lang-select:hover {
  border-color: #4f46e5;
}
.ec-lang-select:focus {
  border-color: #4f46e5;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.12);
}
.ec-container {
  position: relative;
  width: 100%;
  height: 680px;
  overflow: hidden;
  border-radius: 0 0 16px 16px;
  box-shadow: 0 4px 32px rgba(79, 70, 229, 0.12), 0 1px 4px rgba(0, 0, 0, 0.06);
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  background: #ffffff;
}
.ec-container::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.ec-view {
  position: absolute;
  inset: 0;
  background: transparent;
  overflow-y: auto;
  overflow-x: hidden;
  will-change: transform, opacity;
}
.ec-view.ec-active {
  opacity: 1;
  transform: scale(1);
}
.ec-view.ec-hidden {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform: scale(1);
}
@keyframes ec-exit-in {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(0.87);
  }
}
@keyframes ec-enter-in {
  from {
    opacity: 0;
    transform: scale(1.09);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes ec-exit-out {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(1.09);
  }
}
@keyframes ec-enter-out {
  from {
    opacity: 0;
    transform: scale(0.87);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.ec-view.exit-in {
  animation: ec-exit-in 340ms cubic-bezier(0.32, 0, 0.67, 0) forwards;
}
.ec-view.enter-in {
  animation: ec-enter-in 420ms cubic-bezier(0.33, 1, 0.68, 1) forwards;
}
.ec-view.exit-out {
  animation: ec-exit-out 340ms cubic-bezier(0.32, 0, 0.67, 0) forwards;
}
.ec-view.enter-out {
  animation: ec-enter-out 420ms cubic-bezier(0.33, 1, 0.68, 1) forwards;
}
.ec-month-view {
  height: 100%;
  display: flex;
  flex-direction: row;
  box-sizing: border-box;
}
.ec-month-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 20px 12px 12px 18px;
  box-sizing: border-box;
}
.ec-month-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  flex-shrink: 0;
}
.ec-month-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ec-month-title {
  font-size: 20px;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
  letter-spacing: -0.02em;
}
.ec-view-toggle {
  display: flex;
  background: #f1f5f9;
  border-radius: 8px;
  padding: 3px;
  gap: 2px;
}
.ec-toggle-btn {
  width: 32px;
  height: 28px;
  border: none;
  background: transparent;
  border-radius: 6px;
  cursor: pointer;
  font-size: 15px;
  color: #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.15s,
    color 0.15s,
    box-shadow 0.15s;
  padding: 0;
}
.ec-toggle-btn--active {
  background: #fff;
  color: #4f46e5;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}
.ec-toggle-btn:not(.ec-toggle-btn--active):hover {
  color: #4f46e5;
}
.ec-month-list {
  flex: 1;
  overflow-y: auto;
  padding: 4px 0 18px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ec-month-list-day {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ec-month-list-day-header {
  display: flex;
  align-items: baseline;
  gap: 8px;
  cursor: pointer;
  padding: 6px 2px;
  border-bottom: 1px solid #f1f5f9;
  transition: border-color 0.15s;
}
.ec-month-list-day-header:hover {
  border-bottom-color: #4f46e5;
}
.ec-month-list-day-header:hover .ec-list-day-date {
  color: #4f46e5;
}
.ec-month-list-day-header:hover .ec-list-day-arrow {
  color: #4f46e5;
  opacity: 1;
}
.ec-list-day-name {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #94a3b8;
}
.ec-list-day-date {
  font-size: 24px;
  font-weight: 700;
  color: #1e293b;
  transition: color 0.15s;
  flex: 1;
}
.ec-list-day-arrow {
  font-size: 18px;
  color: #cbd5e1;
  opacity: 0.6;
  transition: color 0.15s, opacity 0.15s;
}
.ec-month-list-events {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ec-month-list::-webkit-scrollbar {
  width: 4px;
}
.ec-month-list::-webkit-scrollbar-track {
  background: transparent;
}
.ec-month-list::-webkit-scrollbar-thumb {
  background: #e2e8f0;
  border-radius: 2px;
}
.ec-nav-btn {
  width: 34px;
  height: 34px;
  border: none;
  background: #f1f5f9;
  border-radius: 50%;
  cursor: pointer;
  font-size: 19px;
  line-height: 1;
  color: #4f46e5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.15s,
    color 0.15s,
    transform 0.1s;
  padding: 0;
}
.ec-nav-btn:hover {
  background: #4f46e5;
  color: #fff;
  transform: scale(1.08);
}
.ec-nav-btn:active {
  transform: scale(0.95);
}
.ec-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
  flex: 1;
  min-height: 0;
}
.ec-day-name {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 2px 0 8px;
}
.ec-day-cell {
  min-height: 72px;
  min-width: 0;
  max-width: 100%;
  background: #f8fafc;
  border-radius: 8px;
  padding: 5px;
  cursor: default;
  transition:
    background 0.18s,
    transform 0.12s,
    box-shadow 0.18s;
  position: relative;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}
.ec-day-cell.ec-day-empty {
  background: transparent;
  pointer-events: none;
}
.ec-day-cell.ec-day-has-events {
  cursor: pointer;
  background: #f5f3ff;
}
.ec-day-cell.ec-day-has-events:hover {
  background: #ede9fe;
  transform: scale(1.03);
  box-shadow: 0 4px 14px rgba(79, 70, 229, 0.18);
  z-index: 1;
}
.ec-day-cell.ec-day-has-events:active {
  transform: scale(0.97);
}
.ec-day-bg-image {
  position: absolute;
  inset: 0;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  opacity: 0.13;
  pointer-events: none;
  z-index: 1;
}
.ec-day-number {
  font-size: 12px;
  font-weight: 600;
  color: #475569;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 3px;
  flex-shrink: 0;
}
.ec-day-cell.ec-day-today .ec-day-number {
  background: #4f46e5;
  color: #fff;
  font-weight: 700;
}
.ec-day-events {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  z-index: 10;
  opacity: 0.8;
}
.ec-event-chip {
  font-size: 9.5px;
  padding: 2px 4px;
  background: #fff;
  border-left: 3px solid #4f46e5;
  border-radius: 0 3px 3px 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: #374151;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
  line-height: 1.4;
}
.ec-chip-title {
  font-weight: 600;
}
.ec-more-chip {
  border-left-color: #cbd5e1;
  color: #94a3b8;
  font-style: italic;
  background: transparent;
  box-shadow: none;
}
.ec-filter-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  flex-shrink: 0;
  padding-bottom: 10px;
}
.ec-month-content .ec-filter-bar {
  padding: 8px 0;
  margin-bottom: 6px;
  border-top: 1px solid #f1f5f9;
  border-bottom: 1px solid #f1f5f9;
}
.ec-day-view .ec-filter-bar {
  padding: 8px 18px;
  background: #fff;
  border-bottom: 1px solid #f1f5f9;
}
.ec-filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  flex: 1;
}
.ec-filter-chip {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: 20px;
  border: 1px solid;
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.4;
  flex-shrink: 0;
  font-family: inherit;
  transition:
    transform 0.12s,
    box-shadow 0.12s,
    background 0.15s,
    color 0.15s,
    border-color 0.15s;
}
.ec-filter-chip:hover:not(.ec-filter-chip--active) {
  transform: translateY(-1px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.10);
}
.ec-filter-chip--active {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
  transform: translateY(-1px);
}
.ec-filter-clear {
  flex-shrink: 0;
  font-size: 10.5px;
  font-weight: 600;
  color: #94a3b8;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 6px;
  letter-spacing: 0.02em;
  font-family: inherit;
  border-radius: 6px;
  white-space: nowrap;
  transition: color 0.15s;
}
.ec-filter-clear:hover {
  color: #ef4444;
}
.ec-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 3px;
}
.ec-tags--detail {
  gap: 6px;
  margin: 6px 0 12px;
}
.ec-tag {
  display: inline-flex;
  align-items: center;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 10px;
  border: 1px solid;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1.5;
}
.ec-tags--detail .ec-tag {
  font-size: 10.5px;
  padding: 3px 10px;
}
.ec-map-panel {
  width: 320px;
  flex-shrink: 0;
  border-left: 1px solid #f1f5f9;
  background: #faf8f5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 8px;
  box-sizing: border-box;
}
.ec-map-panel .argentine-map-wrapper {
  width: 100%;
}
.ec-day-view {
  height: 100%;
  display: flex;
  flex-direction: row;
  box-sizing: border-box;
}
.ec-day-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.ec-view-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-bottom: 1px solid #f1f5f9;
  background: #fff;
  flex-shrink: 0;
}
.ec-back-btn {
  border: none;
  background: #f1f5f9;
  color: #4f46e5;
  font-size: 14px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  cursor: pointer;
  transition:
    background 0.15s,
    color 0.15s,
    transform 0.1s;
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.01em;
}
.ec-back-btn:hover {
  background: #4f46e5;
  color: #fff;
}
.ec-back-btn:active {
  transform: scale(0.96);
}
.ec-view-title {
  font-size: 24px;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  letter-spacing: -0.01em;
}
.ec-event-list {
  flex: 1;
  overflow-y: auto;
  padding: 14px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ec-event-card {
  display: flex;
  flex-direction: row;
  border-radius: 12px;
  overflow: hidden;
  border-left: 4px solid #4f46e5;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
  cursor: pointer;
  transition: transform 0.2s cubic-bezier(0.33, 1, 0.68, 1), box-shadow 0.2s;
  background: #fff;
  min-height: 300px;
}
.ec-event-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.ec-event-card:active {
  transform: scale(0.98);
}
.ec-event-card-image {
  width: 195px;
  flex-shrink: 0;
  overflow: hidden;
  background: #e2e8f0;
  align-self: stretch;
}
.ec-event-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.ec-event-card:hover .ec-event-card-image img {
  transform: scale(1.05);
}
.ec-event-card-body {
  padding: 18px 20px;
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.ec-event-card .ec-tag {
  font-size: 14px;
  padding: 3px 10px;
}
.ec-event-card-title-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.ec-event-card-title-row .ec-event-card-title {
  flex: 1;
}
.ec-event-card-title {
  font-size: 26px;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
  letter-spacing: -0.01em;
}
.ec-like-btn {
  flex-shrink: 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 52px;
  line-height: 1;
  padding: 0;
  color: #cbd5e1;
  transition: color 0.15s, transform 0.12s;
}
.ec-like-btn:hover {
  color: #f43f5e;
  transform: scale(1.15);
}
.ec-like-btn--active {
  color: #f43f5e;
}
.ec-like-btn--active:hover {
  transform: scale(1.1);
}
.ec-event-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.ec-meta-time,
.ec-meta-location {
  font-size: 20px;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 3px;
}
.ec-event-card-desc {
  font-size: 21px;
  color: #64748b;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.5;
}
.ec-event-view {
  height: 100%;
  overflow-y: auto;
}
.ec-hero-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 7;
  overflow: hidden;
  background: #e2e8f0;
  flex-shrink: 0;
}
.ec-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ec-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      160deg,
      rgba(0, 0, 0, 0.42) 0%,
      transparent 55%);
  display: flex;
  align-items: flex-start;
  padding: 14px 18px;
}
.ec-back-btn--white {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.28);
}
.ec-back-btn--white:hover {
  background: rgba(255, 255, 255, 0.36);
  color: #fff;
}
.ec-event-detail {
  padding: 18px 20px 24px;
}
.ec-event-detail-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}
.ec-event-detail-header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  flex-shrink: 0;
}
.ec-like-btn--detail {
  font-size: 64px;
}
.ec-event-detail-title {
  font-size: 21px;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
  line-height: 1.22;
  letter-spacing: -0.03em;
  flex: 1;
}
.ec-event-time-badge {
  flex-shrink: 0;
  background: #4f46e5;
  color: #fff;
  font-size: 11.5px;
  font-weight: 700;
  padding: 5px 13px;
  border-radius: 20px;
  white-space: nowrap;
  margin-top: 2px;
  letter-spacing: 0.01em;
}
.ec-event-detail-meta {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid #f1f5f9;
}
.ec-detail-meta-item {
  font-size: 13.5px;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 5px;
}
.ec-event-detail-description {
  font-size: 14.5px;
  line-height: 1.7;
  color: #374151;
  margin: 0;
}
.ec-event-detail-columns {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.ec-event-detail-main {
  flex: 1;
  min-width: 0;
}
.ec-event-portrait {
  width: 130px;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.ec-event-portrait img {
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 2 / 3;
}
.ec-empty-state {
  text-align: center;
  color: #94a3b8;
  font-size: 14px;
  padding: 40px 20px;
}
.ec-empty-state--month {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 20px;
}
.ec-next-events-btn {
  border: 1px solid #e2e8f0;
  background: #fff;
  color: #3b82f6;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}
.ec-next-events-btn:hover {
  background: #eff6ff;
  border-color: #bfdbfe;
}
.ec-event-list::-webkit-scrollbar,
.ec-event-view::-webkit-scrollbar {
  width: 4px;
}
.ec-event-list::-webkit-scrollbar-track,
.ec-event-view::-webkit-scrollbar-track {
  background: transparent;
}
.ec-event-list::-webkit-scrollbar-thumb,
.ec-event-view::-webkit-scrollbar-thumb {
  background: #e2e8f0;
  border-radius: 2px;
}
.ec-search-bar {
  position: relative;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.ec-month-header-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.ec-search-bar--header {
  width: 180px;
}
.ec-search-bar--inline {
  margin-left: auto;
  width: 200px;
}
.ec-search-icon-svg {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  color: #94a3b8;
  pointer-events: none;
  transition: color 0.15s;
}
.ec-search-input {
  width: 100% !important;
  padding: 7px 32px 7px 34px !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 20px !important;
  font-size: 13px !important;
  font-family: inherit !important;
  color: #1e293b !important;
  background: #f8fafc !important;
  outline: none !important;
  transition: border-color 0.15s, box-shadow 0.15s !important;
  box-sizing: border-box !important;
}
.ec-search-input::placeholder {
  color: #94a3b8;
}
.ec-search-input:focus {
  border-color: #4f46e5;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
  background: #fff;
}
.ec-search-input:focus + .ec-search-icon-svg,
.ec-search-bar:focus-within .ec-search-icon-svg {
  color: #4f46e5;
}
.ec-search-clear {
  position: absolute;
  right: 8px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  color: #94a3b8;
  padding: 0;
  line-height: 1;
  display: flex;
  align-items: center;
  transition: color 0.15s;
}
.ec-search-clear:hover {
  color: #ef4444;
}
.ec-province-chip {
  background: #fff1f2 !important;
  color: #be123c !important;
  border-color: #fecdd3 !important;
  white-space: nowrap;
}
.ec-province-chip:hover {
  background: #ffe4e6 !important;
  border-color: #fda4af !important;
  transform: translateY(-1px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.10);
}
.ec-export-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.ec-export-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 20px;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  transition:
    background 0.15s,
    border-color 0.15s,
    transform 0.1s,
    box-shadow 0.15s;
  border: 1px solid;
  white-space: nowrap;
}
.ec-export-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
}
.ec-export-btn:active {
  transform: scale(0.97);
}
.ec-export-btn--google {
  background: #fff;
  color: #1e293b;
  border-color: #e2e8f0;
}
.ec-export-btn--google:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
}
.ec-export-btn--ics {
  background: #f5f3ff;
  color: #4f46e5;
  border-color: #ddd6fe;
}
.ec-export-btn--ics:hover {
  background: #ede9fe;
  border-color: #c4b5fd;
}
.ec-card-action-btns {
  display: flex;
  align-items: flex-start;
  flex-shrink: 0;
}
.ec-detail-action-btns {
  display: flex;
  align-items: center;
}
.ec-share-icon {
  width: 36px;
  height: 36px;
}
.ec-share-btn {
  flex-shrink: 0;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cbd5e1;
  transition: color 0.15s, transform 0.12s;
}
.ec-share-btn:hover {
  color: #4f46e5;
  transform: scale(1.15);
}
.ec-share-btn:active {
  transform: scale(0.95);
}
.ec-share-btn--detail {
  width: 64px;
  height: 64px;
}
.ec-share-btn--detail .ec-share-icon {
  width: 44px;
  height: 44px;
}
.ec-share-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.52);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  animation: ec-backdrop-in 0.18s ease;
}
@keyframes ec-backdrop-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.ec-share-modal {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  width: 320px;
  max-width: calc(100vw - 32px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.22);
  animation: ec-modal-in 0.22s cubic-bezier(0.33, 1, 0.68, 1);
}
@keyframes ec-modal-in {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
.ec-share-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.ec-share-modal-title {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.01em;
}
.ec-share-modal-close {
  background: #f1f5f9;
  border: none;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  transition: background 0.15s, color 0.15s;
  padding: 0;
  line-height: 1;
  font-family: inherit;
}
.ec-share-modal-close:hover {
  background: #e2e8f0;
  color: #1e293b;
}
.ec-share-event-name {
  font-size: 12.5px;
  color: #64748b;
  margin: 0 0 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid #f1f5f9;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ec-share-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.ec-share-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 8px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  cursor: pointer;
  font-family: inherit;
  transition:
    background 0.15s,
    border-color 0.15s,
    transform 0.12s;
}
.ec-share-option:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
  transform: translateY(-2px);
}
.ec-share-option:active {
  transform: scale(0.97);
}
.ec-share-option--copied {
  background: #f0fdf4;
  border-color: #86efac;
}
.ec-share-option--copied:hover {
  background: #dcfce7;
  border-color: #4ade80;
}
.ec-share-option-icon {
  font-size: 22px;
  line-height: 1;
}
.ec-share-option-label {
  font-size: 10.5px;
  font-weight: 600;
  color: #475569;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.ec-share-option--copied .ec-share-option-label {
  color: #16a34a;
}
@media (prefers-reduced-motion: reduce) {
  .ec-view.exit-in,
  .ec-view.enter-in,
  .ec-view.exit-out,
  .ec-view.enter-out {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* sass:/home/martin/sp/tcalendar/app/javascript/styles/global.css */
.itemContainer {
  border: 1px solid #ccc !important;
  border-radius: 3px !important;
  padding: 1em !important;
  margin-bottom: 10px;
}
.defaultBorder {
  border-radius: 3px !important;
  padding: 1em !important;
}
body {
  font-family: "Lato", sans-serif !important;
}
.ant-typography,
.ant-tag,
.ant-btn,
.ant-input,
.ant-select-selector,
.ant-menu,
.ant-radio-wrapper,
.ant-checkbox-wrapper,
.ant-card,
.ant-card-meta,
.ant-list-item,
.ant-list-item-meta-title,
.ant-list-item-meta-description,
.ant-table-wrapper,
.ant-form-item,
.ant-table,
.ant-table * {
  font-family: "Lato", sans-serif !important;
}
.my-custom-select .ant-select-selector {
  border-bottom: none !important;
}
.ant-form-item-label {
  flex: 0 0 250px !important;
  max-width: 250px !important;
}
.ant-form-item-label > label {
  white-space: normal;
  height: auto;
  line-height: 1.3;
}
/*# sourceMappingURL=/assets/application.css.map */
