.wesl-calendar {
    max-width: 420px;
    margin: 30px auto;
    font-family: Arial, sans-serif;
    border: 1px solid #eee;
    padding: 15px;
    border-radius: 10px;
    background: #fff;
}

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

.wesl-nav button {
    background: #765244;
    color: #fff;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 4px;
}

.wesl-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    text-align: center;
}

.wesl-day {
    padding: 8px;
    border-radius: 5px;
    font-size: 13px;
}

.wesl-booked {
    background: #765244;
    color: #fff;
}

.wesl-available {
    background: #e8e5e3;
}

.wesl-indicator-bar {
  display: flex;
  flex-flow: row nowrap;
  margin-top: 8px;
  gap:30px;
}

.wesl-indicator-container {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
}

.wesl-indicator {
  width: 14px;
  height: 14px;
  margin-right: 14px;
}

.wesl-weekday {
    font-weight: 600;
    font-size: 12px;
    color: #765244;
    padding: 6px 0;
}

.wesl-grid {
    grid-template-columns: repeat(7, 1fr);
}