@charset "UTF-8";
.calendar {
  padding: 80px 0;
}
.calendar #calendar-container {
  width: 100%;
}
.calendar .calendar-header {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .calendar .calendar-header {
    width: 100%;
    flex-wrap: wrap;
  }
}
.calendar .calendar-header .transparent {
  background-color: transparent;
  border: 0;
  outline: 0;
}
@media (max-width: 768px) {
  .calendar .calendar-header .transparent {
    order: 2;
  }
}
.calendar .calendar-header .center-handler {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 400px;
}
@media (max-width: 768px) {
  .calendar .calendar-header .center-handler {
    order: 1;
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
  }
}
.calendar .calendar-header .center-handler .view-all {
  width: 85px;
  height: 40px;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.4px;
}
.calendar .event-span {
  border-radius: 8px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.1019607843);
}
.calendar .event-card {
  border-radius: 6px;
  padding: 6px 8px;
  background: rgba(255, 255, 255, 0.1019607843);
  margin-right: 6px;
  display: block;
  margin-bottom: 12px;
  text-decoration: none;
}
.calendar .event-card:hover {
  opacity: 1;
}
.calendar .event-span-desc {
  position: relative;
}
.calendar .event-span-desc:after {
  content: "";
  position: absolute;
}
.calendar .cgs-calendar-day .event-title {
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.4px;
  color: #ffffff;
}
.calendar .cgs-calendar-day .event-desc {
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.4px;
  color: #9CB4C5;
}

.calendar-header button {
  padding: 6px 10px;
  cursor: pointer;
}

.calendar-days-header, .cgs-calendar-week {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}

.calendar-days-header {
  font-weight: 600;
  margin-bottom: 8px;
  text-align: center;
}

.calendar-days-header.list {
  display: none;
}

.calendar-day-name {
  padding: 6px 0;
  position: relative;
  max-width: 174px;
}

.week-range {
  font-weight: 600;
}

.mini-title {
  color: #ffffff;
}

.cgs-calendar {
  position: relative;
}

.mini-popup {
  position: absolute;
  top: 0%;
  right: 235px;
  z-index: 9999;
  margin-top: 8px;
  background: #496681;
  border-radius: 8px;
  padding: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  min-width: 250px;
}

.mini-cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 6px;
}
.mini-cal-header .mini-nav {
  background-color: transparent;
  border: 0;
  cursor: pointer;
}

.mini-title {
  font-weight: 600;
}

.mini-cal-weekdays, .mini-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.mini-wd {
  text-align: center;
  font-size: 12px;
  opacity: 0.7;
  padding: 4px 0;
}

.mini-day {
  border: 1px solid #eee;
  border-radius: 6px;
  padding: 6px 0;
  text-align: center;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.1019607843);
  color: #ffffff;
}

.mini-day.muted {
  opacity: 0.45;
}

.mini-day.selected {
  border-color: #3b82f6;
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.25) inset;
}

.open-mini-cal {
  font-size: 16px;
  display: inline-flex;
  cursor: pointer;
}

/* -------------------------------------------
   FULL HEIGHT GRID LINES (BEHIND EVERYTHING)
------------------------------------------- */
.calendar-body {
  position: relative;
  z-index: 1;
  min-height: 400px;
}
@media (max-width: 768px) {
  .calendar-body.list {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.calendar-body.list:before {
  display: none;
}
.calendar-body .no-events {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  border-radius: 8px;
  padding: 6px 10px;
  line-height: 1.3;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  margin-right: 8px;
  text-decoration: none;
  margin-bottom: 12px;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  top: 50px;
  font-size: 18px;
  height: 100px;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
}

/* Το layer με τις κάθετες γραμμές */
.calendar-body::before {
  content: "";
  position: absolute;
  top: -40px;
  left: -8px;
  right: 0;
  bottom: 0;
  display: block;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08)), linear-gradient(to bottom, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08)), linear-gradient(to bottom, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08)), linear-gradient(to bottom, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08)), linear-gradient(to bottom, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08)), linear-gradient(to bottom, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08));
  background-size: 2px 100%, 2px 100%, 2px 100%, 2px 100%, 2px 100%, 2px 100%;
  background-position: 14.2857142857% 0, 28.5714285714% 0, 42.8571428571% 0, 57.1428571429% 0, 71.4285714286% 0, 85.7142857143% 0;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 1;
}

/* -------------------------------------------
   EVENTS ABOVE (multi + single)
------------------------------------------- */
.multi-events-row,
.cgs-calendar-week {
  position: relative;
  z-index: 5;
}
.multi-events-row .event-span,
.cgs-calendar-week .event-span {
  min-height: 128px;
}
.multi-events-row .event-date,
.cgs-calendar-week .event-date {
  color: #9CB4C5;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.4px;
  display: flex;
  align-items: center;
}
.multi-events-row .bullet,
.cgs-calendar-week .bullet {
  display: flex;
  margin: 0px 5px;
}
.multi-events-row .event-span-title,
.cgs-calendar-week .event-span-title {
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.4px;
  color: #ffffff;
  text-decoration: none;
}
.multi-events-row .event-span-desc,
.cgs-calendar-week .event-span-desc {
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.4px;
  color: #9CB4C5;
}

/* Τα event bars κρύβουν τις γραμμές τελείως */
.multi-events-row .event-span {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  border-radius: 8px;
  z-index: 10;
  position: relative;
}
.multi-events-row .event-span:hover {
  opacity: 1;
}

/* Optional: shadow για να “ξεχωρίζουν” πάνω από το grid */
.multi-events-row .event-span {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
}

/* Κάνει το πάνω layer grid 7 στηλών */
.multi-events-row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  position: relative;
  z-index: 5; /* πάνω από το background αλλά κάτω από single events */
}

/* Οι μπάρες στοιχίζονται στις grid στήλες */
.multi-events-row .event-span {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 13px;
  line-height: 1.3;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  margin-right: 8px;
  text-decoration: none;
  margin-bottom: 12px;
}

.week-list-day-events .event-card {
  display: flex;
  padding: 16px 24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  align-self: stretch;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
}
.week-list-day-events .event-card .event-date {
  color: #9CB4C5;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
  letter-spacing: 0.64px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.week-list-day-events .event-card .event-date .bullet {
  display: flex;
}
.week-list-day-events .event-card .event-title {
  color: #FFF;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 24px */
  letter-spacing: 0.64px;
}
.week-list-day-events .event-card .event-desc {
  color: #9CB4C5;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
  letter-spacing: 0.64px;
}

@media (max-width: 1300px) {
  .category-calendar {
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 15px;
  }
}

/*# sourceMappingURL=vc_calendar.css.map */
