:host {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-family: var(--font-family-body);
  border: 1px solid var(--color-border-primary);
  border-radius: 10px;
  padding: 12px;
  width: 233px;
  user-select: none;
}

.header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;

  .month-year {
    font-size: 1.2em;
    font-weight: bold;
    font-family: var(--font-family-body);
    font-size: var(--typography-size-body-md);
    font-weight: var(--font-weight-regular);
    line-height: var(--line-height-body-md);
    letter-spacing: var(--font-letter-spacing-default);
    color: var(--color-surface-action-solid);
  }
  
  button {
    background: none;
    border: none;
    font-size: 1em;
    cursor: pointer;
    padding: 0;
    color: var(--color-surface-action-solid);

    > * {
      display: flex;
      > svg {
        align-self: center;
      }
    }
  }
}

.days-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px 5px;
}
