/* /nyitvatartas/widget.css */

.sze-widget-wrapper {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  max-width: 100%;
  margin-bottom: 20px;
  color: #333;
}

/* Header */
.sze-widget-header {
  background-color: #242943; /* SZE Dark Blue */
  color: #fff !important; /* Itt is kényszerítjük */
  padding: 15px;
  text-align: center;
  transition: background-color 0.3s ease;
}

.sze-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #ffffff !important; /* Kényszerített fehér szín a konténernek */
}

/* KÜLÖN ID SZELEKTOR A BIZTOS SIKERÉRT */
#szeStatusText {
  color: #ffffff !important;
  text-decoration: none !important;
  font-size: 14px;
  font-weight: bold;
}

/* Pulse Dot */
.sze-status-dot {
  width: 10px;
  height: 10px;
  background-color: #ccc;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 rgba(255, 255, 255, 0.4);
  animation: sze-pulse 2s infinite;
}

@keyframes sze-pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

/* List Area */
.sze-schedule-list {
  padding: 0;
  margin: 0;
}

.sze-schedule-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 15px;
  border-bottom: 1px solid #f0f0f0;
  font-size: 14px;
  transition: background 0.2s;
}

.sze-schedule-item:last-child {
  border-bottom: none;
}

/* Active Day Highlight */
.sze-schedule-item.is-today {
  background-color: #f0f8ff; /* AliceBlue */
  border-left: 4px solid #50adc9; /* SZE Cyan */
  padding-left: 11px; /* Compensate for border */
}

.sze-schedule-item.is-past {
  opacity: 0.5;
  filter: grayscale(100%);
}

/* Date Column */
.sze-date-col {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.sze-date-num {
  font-weight: 700;
  font-size: 15px;
  color: #242943;
}
.sze-date-day {
  font-size: 12px;
  text-transform: uppercase;
  color: #666;
  margin-top: 2px;
}

/* Times Column */
.sze-time-col {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-end;
}

.sze-time-badge {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  color: #555;
  white-space: nowrap;
}

.is-today .sze-time-badge {
  background: #fff;
  border-color: #50adc987;
  color: #50adc9;
}

/* Override / Message State */
.sze-message-box {
  padding: 30px 20px;
  text-align: center;
  color: #555;
}
.sze-msg-title {
  font-weight: 700;
  color: #dc3545;
  margin-bottom: 8px;
  display: block;
  text-transform: uppercase;
  font-size: 12px;
}
.sze-msg-text {
  font-size: 15px;
  line-height: 1.4;
  font-weight: 600;
  color: #333;
}

/* Footer */
.sze-widget-footer {
  background: #fcfcfc;
  border-top: 1px solid #eee;
  padding: 12px;
  font-size: 13px;
  color: #777;
}
.sze-widget-footer a {
  color: #009fe3;
  text-decoration: none;
  font-weight: 600;
}
.sze-widget-footer a:hover {
  text-decoration: underline;
}
.sze-widget-footer p {
  margin: 0;
}

/* QUILL ALIGNMENT SUPPORT */
.ql-align-center {
  text-align: center;
}
.ql-align-right {
  text-align: right;
}
.ql-align-justify {
  text-align: justify;
}

/* Table Support */
.sze-widget-footer table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
  font-size: 12px;
}
.sze-widget-footer table td,
.sze-widget-footer table th {
  border: 1px solid #ddd;
  padding: 4px 8px;
  text-align: left;
}
.sze-widget-footer table th {
  background-color: #f2f2f2;
  font-weight: 600;
}
