
    :root{
      --bg:#f5f7fb;
      --card:#ffffff;
      --text:#101828;
      --muted:#667085;
      --line:#d0d5dd;
      --soft:#f8fbff;
      --today:#fff7ed;
    }
    *{box-sizing:border-box}
    body{
      margin:0;
      background:var(--bg);
      color:var(--text);
      font-family:Arial, sans-serif;
    }
    .page{
      max-width:640px;
      margin:0 auto;
      padding:24px 16px 40px;
    }
    .card{
      width:100%;
      background:var(--card);
      border:1px solid var(--line);
      border-radius:22px;
      padding:20px;
      margin-bottom:14px;
      box-shadow:0 8px 24px rgba(15,23,42,.05);
    }
    .top{
      display:flex;
      justify-content:space-between;
      align-items:flex-start;
      gap:12px;
      flex-wrap:wrap;
    }
    .top-actions{
      display:flex;
      align-items:center;
      gap:8px;
      flex-wrap:wrap;
    }
    h1{
      margin:0;
      font-size:26px;
      line-height:1.15;
    }
    .sub{
      margin-top:7px;
      color:var(--muted);
      font-size:14px;
    }
    .disabled-next{
      opacity:.35;
      cursor:default;
      pointer-events:none;
    }
    .link-btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:36px;
      padding:8px 13px;
      border:1px solid var(--line);
      border-radius:999px;
      background:#fff;
      color:#344054;
      text-decoration:none;
      font-size:14px;
      font-weight:700;
      white-space:nowrap;
      font-family:inherit;
    }
    .month-head{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      margin-bottom:14px;
    }
    .month-title{
      font-size:20px;
      font-weight:800;
    }
    .weekday-row,
    .calendar-grid{
      display:grid;
      grid-template-columns:repeat(7, 1fr);
      gap:6px;
    }
    .weekday-row{
      margin-bottom:6px;
    }
    .weekday{
      color:#667085;
      font-size:12px;
      font-weight:800;
      text-align:center;
    }
    .calendar-grid{
      margin-bottom:14px;
    }
    .day{
      min-height:48px;
      border:1px solid var(--line);
      border-radius:14px;
      background:#fff;
      padding:7px 4px;
      display:flex;
      flex-direction:column;
      align-items:center;
      justify-content:center;
      gap:4px;
      cursor:pointer;
      color:#101828;
      font-family:inherit;
    }
    .day.empty{
      border-color:transparent;
      background:transparent;
      cursor:default;
    }
    .day.today{
      background:var(--today);
      border-color:#fed7aa;
    }
    .day.selected{
      background:#f8fbff;
      border-color:#93c5fd;
    }
    .day-number{
      font-size:15px;
      font-weight:800;
      line-height:1;
    }
    .selected-status{
      min-height:48px;
      padding:12px 14px;
      border:1px solid var(--line);
      border-radius:16px;
      background:#f8fbff;
      color:#344054;
      font-size:15px;
      font-weight:700;
      text-align:left;
    }
    .selected-title{
      text-align:center;
      font-weight:800;
      margin-bottom:5px;
    }
    .selected-count{
      text-align:center;
      color:#667085;
      font-size:14px;
      font-weight:700;
      margin-bottom:10px;
    }
    .selected-status ol{
      margin:0;
      padding-left:22px;
      text-align:left;
      font-weight:500;
    }
    .selected-status li{
      padding:3px 0;
      font-size:14px;
      line-height:1.35;
    }
    .empty-text{
      text-align:center;
      color:#667085;
      font-weight:600;
    }
    @media (max-width:640px){
      .page{
        max-width:100%;
        padding:8px 8px 14px;
      }
      .card{
        padding:10px;
        border-radius:16px;
        margin-bottom:8px;
        box-shadow:0 4px 14px rgba(15,23,42,.04);
      }
      .top{
        align-items:center;
        gap:8px;
      }
      h1{
        font-size:22px;
        line-height:1.08;
      }
      .sub{
        margin-top:4px;
        font-size:12px;
      }
      .top-actions{
        gap:6px;
      }
      .link-btn{
        min-height:30px;
        padding:6px 10px;
        font-size:13px;
      }
      .month-head{
        margin-bottom:8px;
      }
      .month-title{
        font-size:18px;
      }
      .weekday-row{
        gap:4px;
        margin-bottom:4px;
      }
      .calendar-grid{
        gap:4px;
        margin-bottom:8px;
      }
      .weekday{
        font-size:11px;
      }
      .day{
        min-height:34px;
        border-radius:10px;
        padding:4px 2px;
        gap:2px;
      }
      .day-number{
        font-size:13px;
      }
      .selected-status{
        min-height:34px;
        padding:8px 10px;
        border-radius:13px;
        font-size:13px;
        line-height:1.2;
      }
      .selected-count{
        font-size:12px;
        margin-bottom:8px;
      }
      .selected-status li{
        font-size:13px;
      }
    }
  
      .producer-other-title{
        margin-top:14px;
        padding-top:12px;
        border-top:1px solid rgba(208,213,221,.9);
      }
