.dd-btn-agenda{
    display:inline-flex; align-items:center; justify-content:center;
    padding:14px 18px; border-radius:12px; border:0;
    cursor:pointer; font-weight:700; letter-spacing:.4px;
    background:#111; color:#fff;
  }
  .dd-overlay{
    position:fixed; inset:0; z-index:999999;
    background:rgba(0,0,0,.65);
    display:none;
  }
  .dd-overlay.is-open{ display:block; }
  .dd-panel{
    position:absolute; inset:0;
    background:#fff;
    overflow:auto;
  }
  .dd-wrap{
    max-width:720px; margin:0 auto; padding:22px 16px 40px;
  }
  .dd-header{
    display:flex; align-items:center; justify-content:space-between;
    gap:12px; padding:8px 0 14px; border-bottom:1px solid #eee;
    position:sticky; top:0; background:#fff; z-index:1;
  }
  .dd-title{ font-size:18px; font-weight:800; margin:0; }
  .dd-close{
    border:0; background:#f2f2f2; padding:10px 12px;
    border-radius:10px; cursor:pointer; font-weight:700;
  }
  .dd-form{ padding-top:14px; }
  .dd-grid{ display:grid; grid-template-columns:1fr; gap:12px; }
  @media (min-width:720px){
    .dd-grid.two{ grid-template-columns:1fr 1fr; }
  }
  .dd-field label{
    display:block; font-size:12px; font-weight:800;
    letter-spacing:.6px; margin-bottom:6px;
  }
  .dd-field input, .dd-field select, .dd-field textarea{
    width:100%; padding:12px 12px; border:1px solid #ddd;
    border-radius:12px; outline:none; font-size:14px;
  }
  .dd-field textarea{ min-height:90px; resize:vertical; }
  .dd-note{
    font-size:12px; line-height:1.4; color:#333; background:#fafafa;
    border:1px solid #eee; padding:12px; border-radius:12px;
  }
  .dd-actions{
    display:flex; gap:10px; flex-wrap:wrap; margin-top:14px;
  }
  .dd-primary{
    border:0; cursor:pointer; border-radius:12px;
    padding:14px 16px; font-weight:800;
    background:#111; color:#fff;
  }
  .dd-secondary{
    border:1px solid #ddd; cursor:pointer; border-radius:12px;
    padding:14px 16px; font-weight:800;
    background:#fff; color:#111;
  }
  .dd-radio{
    display:flex; gap:12px; flex-wrap:wrap;
    padding:10px 12px; border:1px solid #ddd; border-radius:12px;
  }
  .dd-radio label{
    display:flex; align-items:center; gap:8px;
    font-weight:700; font-size:13px; margin:0;
    letter-spacing:.2px;
  }
  .dd-required{ color:#d00; font-weight:900; margin-left:4px; }
  .dd-error{
    display:none; margin-top:10px;
    color:#b00020; background:#fff3f3; border:1px solid #ffd0d0;
    padding:10px 12px; border-radius:12px; font-size:13px;
  }
  .dd-tc a{ color:#111; font-weight:800; text-decoration:underline; }