/* =================================== */
/* export.css */
/* =================================== */

/* Calendar Export */
  .ze-cal-export-btn { display:inline-flex; align-items:center; gap:6px; background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.12); border-radius:10px; padding:10px 16px; color:rgba(255,255,255,0.7); font-size:12px; cursor:pointer; transition:all 0.2s; font-family:inherit; }
  .ze-cal-export-btn:hover { background:rgba(0,229,170,0.1); border-color:#00E5AA; color:#00E5AA; }
  .ze-cal-export-btn svg { width:14px; height:14px; fill:currentColor; }
  .ze-cal-export-row { display:flex; gap:8px; justify-content:center; margin-top:12px; flex-wrap:wrap; }
  .ze-export-btns { display:flex; gap:8px; align-items:center; justify-content:flex-end; flex-wrap:wrap; }
  
/* Export Selector Modal */
  .ze-export-overlay { display:none; position:fixed; top:0; left:0; right:0; bottom:0; background:rgba(0,0,0,0.6); z-index:10001; align-items:center; justify-content:center; }
  .ze-export-overlay.ze-active { display:flex; }
  .ze-export-panel { background:#372B61; border:1px solid rgba(255,255,255,0.12); border-radius:20px; width:90%; max-width:520px; max-height:80vh; display:flex; flex-direction:column; overflow:hidden; }
  .ze-export-header { padding:20px 24px 12px; display:flex; align-items:center; justify-content:space-between; }
  .ze-export-title { font-size:13px; font-weight:700; color:rgba(255,255,255,0.5); letter-spacing:1.2px; text-transform:uppercase; }
  .ze-export-close { background:none; border:none; color:#00E5AA; cursor:pointer; font-size:20px; padding:4px 8px; line-height:1; }
  .ze-export-toolbar { padding:0 24px 12px; display:flex; align-items:center; gap:12px; flex-wrap:wrap; }
  .ze-export-search { flex:1; min-width:140px; background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.12); border-radius:8px; padding:8px 12px; color:#fff; font-size:13px; font-family:inherit; outline:none; }
  .ze-export-search:focus { border-color:#00E5AA; }
  .ze-export-search::placeholder { color:rgba(255,255,255,0.3); }
  .ze-export-select-all { background:none; border:1px solid rgba(255,255,255,0.15); border-radius:8px; padding:6px 12px; color:rgba(255,255,255,0.6); font-size:11px; cursor:pointer; font-family:inherit; transition:all 0.2s; }
  .ze-export-select-all:hover { border-color:#00E5AA; color:#00E5AA; }
  .ze-export-count { font-size:11px; color:rgba(255,255,255,0.4); }
  .ze-export-list { flex:1; overflow-y:auto; padding:0 24px; }
  .ze-export-item { display:flex; align-items:center; gap:10px; padding:8px 0; border-bottom:1px solid rgba(255,255,255,0.04); cursor:pointer; transition:background 0.15s; }
  .ze-export-item:hover { background:rgba(255,255,255,0.03); }
  .ze-export-cb { width:18px; height:18px; border-radius:4px; border:2px solid rgba(255,255,255,0.2); background:transparent; flex-shrink:0; display:flex; align-items:center; justify-content:center; transition:all 0.15s; cursor:pointer; }
  .ze-export-cb.ze-checked { background:#00E5AA; border-color:#00E5AA; }
  .ze-export-cb svg { display:none; width:12px; height:12px; }
  .ze-export-cb.ze-checked svg { display:block; }
  .ze-export-item-info { flex:1; min-width:0; }
  .ze-export-item-ticker { font-size:13px; font-weight:600; color:rgba(255,255,255,0.9); }
  .ze-export-item-company { font-size:11px; color:rgba(255,255,255,0.4); overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
  .ze-export-item-dates { font-size:10px; color:rgba(255,255,255,0.3); }
  .ze-export-datetype { padding:12px 24px; border-top:1px solid rgba(255,255,255,0.06); display:flex; align-items:center; gap:8px; flex-wrap:wrap; }
  .ze-export-datetype-label { font-size:11px; color:rgba(255,255,255,0.4); margin-right:4px; }
  .ze-export-dt-btn { background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.12); border-radius:8px; padding:6px 14px; color:rgba(255,255,255,0.6); font-size:11px; cursor:pointer; font-family:inherit; transition:all 0.2s; }
  .ze-export-dt-btn:hover { border-color:rgba(255,255,255,0.25); color:rgba(255,255,255,0.8); }
  .ze-export-dt-btn.ze-active { background:rgba(0,229,170,0.15); border-color:#00E5AA; color:#00E5AA; }
  .ze-export-footer { padding:16px 24px; border-top:1px solid rgba(255,255,255,0.08); display:flex; align-items:center; justify-content:space-between; gap:12px; }
  .ze-export-go { background:#00E5AA; color:#372B61; border:none; border-radius:10px; padding:10px 24px; font-size:13px; font-weight:700; cursor:pointer; font-family:inherit; transition:opacity 0.2s; }
  .ze-export-go:hover { opacity:0.85; }
  .ze-export-go:disabled { opacity:0.4; cursor:default; }
