.business-calendar-wrap {
  max-width: 520px;
  border: 1px solid #ddd;
  padding: 14px;
  border-radius: 10px;
}

.bc-title {
  font-weight: 700;
  margin-bottom: 10px;
}

.bc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.bc-nav {
  display: inline-block;
  padding: 6px 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  text-decoration: none;
}

.bc-current-month {
  font-weight: 700;
}

.business-calendar-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.business-calendar-table th,
.business-calendar-table td {
  border: 1px solid #eee;
  text-align: center;
  padding: 8px 4px;
  font-size: 14px;
  position: relative;
}

.bc-empty {
  background: #fafafa;
}

.bc-sun,
.bc-holiday {
  background: #fff3f3;
}

.bc-sat {
  background: #f3f7ff;
}

.bc-company-off {
  outline: 2px solid #ffcc00;
  outline-offset: -2px;
}

.bc-day-number {
  font-weight: 700;
}

.bc-day-label {
  display: inline-block;
  margin-left: 4px;
  font-size: 11px;
  padding: 1px 4px;
  border-radius: 6px;
  border: 1px solid #ddd;
}

.bc-day-label-off {
  border-color: #ffcc00;
}

.bc-legend {
  margin-top: 10px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 12px;
}

.bc-legend-box {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 5px;
  border: 1px solid #ddd;
  vertical-align: -2px;
}

.bc-legend-work { background: #fff; }
.bc-legend-weekend { background: #fff3f3; }
.bc-legend-off { background: #fff; border-color: #ffcc00; }
