/*!***************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!./node_modules/sass-loader/dist/cjs.js!./src/scss/main.scss ***!
  \***************************************************************************************************************************************************************************************************************/
@charset "UTF-8";
/**
 * Training Calendar - Style z custom tooltipami
 */
/* ============================================
   KALENDARZ SZKOLEŃ - TRAINING CALENDAR
   ============================================ */
/* Kontener kalendarza */
#training-calendar {
  width: 100%;
  background: #ffffff;
}

/* Responsywność - mobile */
/* Nagłówek kalendarza */
.fc .fc-toolbar-title {
  font-size: 36px;
  text-transform: capitalize;
}

/* Przyciski nawigacji (strzałki i "Dzisiaj") */
.fc-button-group {
  gap: 5px;
}

.fc .fc-button {
  background-color: #f7f7f7;
  color: #1a1a1a;
  padding: 8px;
  transition: all 0.3s ease;
  border-radius: 0;
  border: none;
}

.fc .fc-button:hover {
  background-color: #99B0A8;
}

.fc .fc-button:disabled {
  background-color: #f7f7f7 !important;
  opacity: 0.6;
}

.fc .fc-button:focus {
  box-shadow: none !important;
}

.fc .fc-button.fc-today-button {
  margin-right: 10px;
  padding-right: 20px;
  padding-left: 20px;
  font-size: 13px;
  font-weight: 600;
  color: #1a1a1a !important;
  border: 1px solid #1a1a1a !important;
  background-color: #fff !important;
}

.fc .fc-button.fc-today-button:hover {
  background-color: #EBEFEE !important;
}

/* Aktywny przycisk */
.fc .fc-button-active {
  background-color: #99B0A8;
}

/* Komórki kalendarza */
.fc .fc-daygrid-day {
  transition: background-color 0.2s ease;
}

.fc .fc-daygrid-day:hover {
  background-color: #f8fafc;
}

/* Dzisiejsza data - żółte tło */
.fc .fc-day-today {
  background-color: #ebefee !important;
}

.fc-direction-ltr .fc-daygrid-event.fc-event-end,
.fc-direction-rtl .fc-daygrid-event.fc-event-start {
  margin-right: 10px;
}

.fc-direction-ltr .fc-daygrid-event.fc-event-start,
.fc-direction-rtl .fc-daygrid-event.fc-event-end {
  margin-left: 10px;
}

/* ============================================
   WYDARZENIA (terminy szkoleń)
   ============================================ */
.fc-event {
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 0;
  border: none !important;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
}

/* Dostępne szkolenia - zielone */
.fc-event.available {
  background-color: #d6dedb !important;
}

.fc-event.available .fc-event-title {
  color: #415959 !important;
}

.fc-event.available:hover {
  background-color: #99B0A8 !important;
}

.fc-event.available:hover .fc-event-title {
  color: #fff !important;
}

/* Niedostępne szkolenia - szare */
.fc-event.unavailable,
.fc-event.fc-event-past,
.fc-event.fc-event-past:hover {
  background-color: #ccc !important;
  opacity: 1 !important;
}

.fc-event.unavailable .fc-event-title,
.fc-event.fc-event-past .fc-event-title,
.fc-event.fc-event-past:hover .fc-event-title {
  color: #1a1a1a !important;
}

/* Tytuł wydarzenia w okienku kalendarza */
.fc-event-title {
  font-size: 13px;
  font-weight: 600 !important;
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
  line-height: 1.2;
}

.fc-daygrid-event-dot {
  display: none !important;
}

/* Godzina wydarzenia */
.fc-event-time {
  font-weight: 600;
  margin-right: 4px;
}

@media (max-width: 1024px) {
  .fc-event-title {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}
/* ============================================
   CUSTOM TOOLTIP (okienko po najechaniu)
   ============================================ */
.training-tooltip {
  position: absolute;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  padding: 16px;
  z-index: 10000;
  min-width: 250px;
  max-width: 400px;
  opacity: 0;
  transform: translateY(-5px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}

.training-tooltip.show {
  opacity: 1;
  transform: translateY(0);
}

/* Data w tooltipie */
.training-tooltip-date {
  font-size: 14px;
  color: #1a1a1a;
  margin-bottom: 6px;
  line-height: 1.4;
}

/* Tytuł w tooltipie */
.training-tooltip-title {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 10px;
  line-height: 1.4;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Status w tooltipie */
.training-tooltip-status {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #e5e7eb;
  font-size: 13px;
  line-height: 1.5;
}

/* Status: Szkolenie zakończone */
/* Status: Brak miejsc */
.training-tooltip-status-past,
.training-tooltip-status-unavailable {
  color: #D4AC70;
  font-weight: 500;
}

/* Strzałka tooltipa (opcjonalnie) */
.training-tooltip::before {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #ffffff;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.1));
}

/* Responsywność tooltipa */
@media (max-width: 768px) {
  .training-tooltip {
    min-width: 200px;
    max-width: calc(100vw - 20px);
    padding: 10px 12px;
  }
  .training-tooltip-date {
    font-size: 12px;
  }
  .training-tooltip-title {
    font-size: 14px;
  }
  .training-tooltip-status {
    font-size: 12px;
  }
}
/* ============================================
   DODATKOWE STYLE KALENDARZA
   ============================================ */
/* Dni weekendowe - delikatne wyróżnienie (opcjonalnie) */
/* Linie siatki */
.fc .fc-scrollgrid {
  border-color: #e5e7eb;
}

.fc .fc-scrollgrid td,
.fc .fc-scrollgrid th {
  border-color: #e5e7eb;
}

.fc .fc-daygrid-day-events {
  min-height: 72px !important;
}

.fc .fc-daygrid-event {
  margin-top: 3px;
}

/* Nazwy dni tygodnia */
.fc .fc-col-header-cell {
  background-color: #f7f7f7;
  font-weight: 600;
  padding: 10px 5px;
  color: #1a1a1a !important;
}

.fc .fc-col-header-cell a {
  font-size: 15px;
  color: #1a1a1a !important;
}

/* Numery dni */
.fc .fc-daygrid-day-number {
  padding: 8px;
  font-weight: 500;
  color: #1a1a1a;
}

/* Loading state */
#training-calendar.loading {
  opacity: 0.5;
  pointer-events: none;
}

/* Więcej wydarzeń - link "więcej" */
.fc .fc-daygrid-more-link {
  color: #2563eb;
  font-weight: 500;
  transition: color 0.2s ease;
}

.fc .fc-daygrid-more-link:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

/* Popover z dodatkowymi wydarzeniami */
.fc .fc-popover {
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: 1px solid #e5e7eb;
}

.fc .fc-popover-header {
  background-color: #f8fafc;
  padding: 10px 12px;
  font-weight: 600;
}

/* ============================================
   RESPONSYWNOŚĆ
   ============================================ */
@media (max-width: 768px) {
  .fc .fc-toolbar {
    flex-direction: column;
    gap: 10px;
  }
  .fc .fc-toolbar-chunk {
    display: flex;
    justify-content: center;
  }
  .fc .fc-toolbar-title {
    font-size: 1.25em;
    margin: 10px 0;
  }
  .fc .fc-button {
    padding: 6px 12px;
    font-size: 0.9em;
  }
  .fc-event-title {
    font-size: 0.75em;
  }
  .fc-event {
    padding: 3px 4px;
  }
}
/* Animacja ładowania (opcjonalnie) */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
#training-calendar.loading::after {
  content: "Ładowanie...";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.2em;
  color: #2563eb;
  animation: pulse 1.5s ease-in-out infinite;
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 1024px) {
  .courses-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (max-width: 567px) {
  .courses-grid {
    grid-template-columns: 1fr;
  }
}

.courses-tabs .tabs {
  margin-bottom: 32px;
  display: flex;
  justify-content: center;
  gap: 8px 24px;
}
@media (max-width: 767px) {
  .courses-tabs .tabs {
    flex-direction: column;
  }
}
.courses-tabs .tab {
  padding: 5px 0;
  font-size: 16px;
  color: #1a1a1a;
  line-height: 1.6;
  text-transform: none;
  border-bottom: 2px solid transparent;
  background-color: transparent;
  cursor: pointer;
}
@media (max-width: 767px) {
  .courses-tabs .tab {
    border-bottom: none;
  }
}
.courses-tabs .tab:hover, .courses-tabs .tab.active {
  color: var(--global-palette1);
  border-color: var(--global-palette1);
}

.course-card {
  background-color: #fff;
}
.course-card:hover img {
  opacity: 0.8;
}
.course-card:hover .course-title {
  color: #415959;
}
.course-card img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  background-color: #DECFB6;
  transition: opacity 0.3s ease-in-out;
}
.course-card .course-details {
  padding: 32px 24px;
  position: relative;
}
.course-card .course-title {
  margin-bottom: 16px;
  font-family: var(--global-heading-font-family, inherit);
  font-size: 24px;
  font-weight: 600;
  color: var(--global-palette3);
  line-height: 1.2;
  text-align: left;
  display: block;
  transition: color 0.3s ease-in-out;
}
@media (max-width: 767px) {
  .course-card .course-title {
    font-size: 20px;
  }
}
.course-card .course-date {
  display: flex;
  gap: 6px;
  align-items: start;
  color: #99b0a8;
}
.course-card .course-date svg {
  width: 16px;
  height: 16px;
  stroke: #415959;
}
.course-card .course-date span {
  font-size: 16px;
  line-height: 1.3;
  font-weight: 600;
}
.course-card .course-icon {
  width: 48px;
  height: 48px;
  top: -24px;
  right: 30px;
  padding: 12px;
  border-radius: 50%;
  background-color: #415959;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
}
.course-card .course-icon svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
}
