.vinno-lichtutap-widget {
  max-width: 100%;
  margin: 0 auto;
}

.vlc-header {
  margin-bottom: 20px !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.prev-month, .next-month {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  color: #555;
  transition: all 0.25s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.03);
}

.prev-month:hover, .next-month:hover {
  border-color: #01417E;
  color: #01417E;
  background-color: #f0f8ff;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(1, 65, 126, 0.15);
}

.prev-month:active, .next-month:active {
  transform: translateY(1px);
  box-shadow: none;
}

.month-title {
  font-size: 16px;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.vlc-weekdays {
  display: none !important;
}

.vlc-calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}

.vlc-card {
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  background: #F4F6F8;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.vlc-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.card-header {
  font-size: 14px;
  padding: 4px 0;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 400;
  text-transform: uppercase;
}

.card-header.header-gray { background-color: #D5DCE3; color: #00000073; }
.card-header.header-red { background-color: #B11B2B; color: #FFFFFF73; }
.card-header.header-blue { background-color: #01417E; color: #FFFFFF73; }

.card-body {
  padding: 8px 0;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}

.day-name {
  font-size: 16px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.65);
  text-transform: uppercase;
}

.solar-date {
  font-size: 32px;
  font-weight: 500;
  color: rgba(0,0,0,0.85);
  line-height: 100%;
  text-transform: uppercase;
}

.lunar-date {
  font-size: 18px;
  color: rgba(0,0,00.65);
  font-weight: 300;
  text-transform: uppercase;
}

.vlc-card.active {
  background-color: #1969B4;
  box-shadow: 0 4px 12px rgba(25, 105, 180, 0.3);
}
.vlc-card.active .card-header {
  background-color: #01417E;
  color: #FFFFFF73;
}
.vlc-card.active .day-name,
.vlc-card.active .lunar-date {
  color: #FFFFFFA6 !important;
}

.vlc-card.active .solar-date {
  color: #FFFFFF !important;
}

@media screen and (max-width: 991px) {
  .vlc-calendar {
    gap: 1px;
  }
  .card-header {
    font-size: 11px;
  }
  .day-name {
    font-size: 13px;
  }
  .solar-date {
    font-size: 24px;
  }
  .lunar-date {
    font-size: 13px;
  }
}