/* Базовые стили для кастомного чекбокса */
.custom-checkbox-wrapper {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
  }
  
  .custom-checkbox-input {
    appearance: none;
    -webkit-appearance: none;
    width: 24px; /* увеличено в 1.5 раза примерно */
    height: 24px;
    border: 2px solid var(--secondary-color); /* бирюзовый */
    border-radius: 4px;
    background-color: #fff;
    margin-right: 8px;
    position: relative;
    cursor: pointer;
    transition: background-color 0.2s, border-color 0.2s;
  }
  
  .custom-checkbox-input:checked {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
  }
  
  .custom-checkbox-input:checked::after {
    content: "";
    position: absolute;
    top: 4px;
    left: 8px;
    width: 4px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
  }
