sidepanel.css 33 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574
  1. /* ============================================================
  2. MultiPage Automation — Side Panel
  3. Design: Swiss Modernism + Developer Tool
  4. Font: Inter (UI) + JetBrains Mono (code)
  5. Themes: Light (default) + Dark (toggle)
  6. ============================================================ */
  7. /* ---- Light Theme (default) ---- */
  8. :root {
  9. --bg-base: #ffffff;
  10. --bg-surface: #f7f8fa;
  11. --bg-elevated: #eef0f4;
  12. --bg-hover: #e4e7ec;
  13. --bg-active: #dce0e8;
  14. --border: #d8dce3;
  15. --border-subtle: #e8ecf1;
  16. --text-primary: #1a1d24;
  17. --text-secondary: #5c6370;
  18. --text-muted: #9ca3af;
  19. --blue: #2563eb;
  20. --blue-soft: rgba(37, 99, 235, 0.08);
  21. --blue-glow: rgba(37, 99, 235, 0.12);
  22. --green: #16a34a;
  23. --green-soft: rgba(22, 163, 74, 0.08);
  24. --orange: #ea580c;
  25. --orange-soft: rgba(234, 88, 12, 0.08);
  26. --red: #dc2626;
  27. --red-soft: rgba(220, 38, 38, 0.08);
  28. --cyan: #0891b2;
  29. --purple: #7c3aed;
  30. --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
  31. --shadow-md: 0 2px 6px rgba(0,0,0,0.06);
  32. --radius-sm: 6px;
  33. --radius-md: 8px;
  34. --transition: 150ms ease;
  35. }
  36. /* ---- Dark Theme ---- */
  37. [data-theme="dark"] {
  38. --bg-base: #0f1117;
  39. --bg-surface: #181a21;
  40. --bg-elevated: #21242d;
  41. --bg-hover: #2a2e38;
  42. --bg-active: #323844;
  43. --border: #2a2e38;
  44. --border-subtle: #21242d;
  45. --text-primary: #e4e6eb;
  46. --text-secondary: #8b919e;
  47. --text-muted: #565c6a;
  48. --blue: #3b82f6;
  49. --blue-soft: rgba(59, 130, 246, 0.12);
  50. --blue-glow: rgba(59, 130, 246, 0.18);
  51. --green: #22c55e;
  52. --green-soft: rgba(34, 197, 94, 0.12);
  53. --orange: #f97316;
  54. --orange-soft: rgba(249, 115, 22, 0.12);
  55. --red: #ef4444;
  56. --red-soft: rgba(239, 68, 68, 0.12);
  57. --cyan: #06b6d4;
  58. --purple: #a78bfa;
  59. --shadow-sm: 0 1px 2px rgba(0,0,0,0.2);
  60. --shadow-md: 0 2px 8px rgba(0,0,0,0.3);
  61. }
  62. * { margin: 0; padding: 0; box-sizing: border-box; }
  63. [hidden] {
  64. display: none !important;
  65. }
  66. body {
  67. font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  68. font-size: 14px;
  69. color: var(--text-primary);
  70. background: var(--bg-base);
  71. padding: 12px;
  72. width: 100%;
  73. min-height: 100vh;
  74. -webkit-font-smoothing: antialiased;
  75. transition: background var(--transition), color var(--transition);
  76. }
  77. /* ============================================================
  78. Header
  79. ============================================================ */
  80. header {
  81. display: flex;
  82. justify-content: space-between;
  83. align-items: center;
  84. margin-bottom: 14px;
  85. padding-bottom: 12px;
  86. border-bottom: 1px solid var(--border-subtle);
  87. }
  88. .header-left {
  89. display: flex;
  90. align-items: center;
  91. gap: 8px;
  92. min-width: 0;
  93. flex: 1;
  94. }
  95. .header-left svg { color: var(--blue); }
  96. .header-version-block {
  97. min-width: 0;
  98. display: flex;
  99. flex-direction: column;
  100. gap: 2px;
  101. }
  102. .header-version-main {
  103. min-width: 0;
  104. display: flex;
  105. align-items: baseline;
  106. gap: 8px;
  107. }
  108. .header-version-title {
  109. font-size: 15px;
  110. font-weight: 700;
  111. letter-spacing: -0.02em;
  112. color: var(--text-primary);
  113. min-width: 0;
  114. flex: 0 1 auto;
  115. white-space: nowrap;
  116. overflow: hidden;
  117. text-overflow: ellipsis;
  118. }
  119. .header-version-title.is-version-label { color: var(--blue); }
  120. .header-version-title.is-update-available { color: var(--orange); }
  121. .header-version-title.is-check-failed { color: var(--text-primary); }
  122. .header-version-meta {
  123. min-width: 0;
  124. font-size: 12px;
  125. color: var(--text-secondary);
  126. white-space: nowrap;
  127. overflow: hidden;
  128. text-overflow: ellipsis;
  129. }
  130. .header-version-meta[hidden] {
  131. display: none !important;
  132. }
  133. .header-link-btn {
  134. padding: 0;
  135. border: none;
  136. background: transparent;
  137. color: var(--blue);
  138. font: inherit;
  139. font-size: 12px;
  140. font-weight: 600;
  141. cursor: pointer;
  142. flex-shrink: 0;
  143. }
  144. .header-link-btn:hover {
  145. color: var(--text-primary);
  146. text-decoration: underline;
  147. }
  148. .header-btns {
  149. display: flex;
  150. align-items: center;
  151. gap: 4px;
  152. flex-shrink: 0;
  153. }
  154. /* ============================================================
  155. Theme Toggle
  156. ============================================================ */
  157. .theme-toggle {
  158. width: 30px;
  159. height: 30px;
  160. border: none;
  161. background: transparent;
  162. color: var(--text-muted);
  163. border-radius: var(--radius-sm);
  164. cursor: pointer;
  165. display: flex;
  166. align-items: center;
  167. justify-content: center;
  168. transition: all var(--transition);
  169. }
  170. .theme-toggle:hover { background: var(--bg-hover); color: var(--text-primary); }
  171. .theme-toggle .icon-moon { display: block; }
  172. .theme-toggle .icon-sun { display: none; }
  173. [data-theme="dark"] .theme-toggle .icon-moon { display: none; }
  174. [data-theme="dark"] .theme-toggle .icon-sun { display: block; }
  175. .header-menu {
  176. position: relative;
  177. display: flex;
  178. align-items: center;
  179. }
  180. .header-config-btn {
  181. min-width: 0;
  182. padding-inline: 10px;
  183. }
  184. .header-config-btn[aria-expanded="true"] {
  185. background: var(--bg-hover);
  186. color: var(--text-primary);
  187. }
  188. .header-dropdown {
  189. position: absolute;
  190. top: calc(100% + 6px);
  191. right: 0;
  192. min-width: 120px;
  193. padding: 6px;
  194. display: flex;
  195. flex-direction: column;
  196. gap: 4px;
  197. background: var(--bg-base);
  198. border: 1px solid var(--border);
  199. border-radius: var(--radius-sm);
  200. box-shadow: var(--shadow-md);
  201. z-index: 1300;
  202. }
  203. .header-dropdown[hidden] {
  204. display: none !important;
  205. }
  206. .header-dropdown-item {
  207. width: 100%;
  208. padding: 8px 10px;
  209. border: none;
  210. border-radius: var(--radius-sm);
  211. background: transparent;
  212. color: var(--text-secondary);
  213. font: inherit;
  214. font-size: 12px;
  215. font-weight: 600;
  216. text-align: left;
  217. cursor: pointer;
  218. transition: background var(--transition), color var(--transition);
  219. }
  220. .header-dropdown-item:hover:not(:disabled) {
  221. background: var(--bg-hover);
  222. color: var(--text-primary);
  223. }
  224. .header-dropdown-item:disabled {
  225. color: var(--text-muted);
  226. cursor: not-allowed;
  227. }
  228. /* ============================================================
  229. Buttons
  230. ============================================================ */
  231. .btn {
  232. display: inline-flex;
  233. align-items: center;
  234. gap: 6px;
  235. padding: 7px 14px;
  236. font-family: inherit;
  237. font-size: 13px;
  238. font-weight: 600;
  239. border: 1px solid transparent;
  240. border-radius: var(--radius-sm);
  241. cursor: pointer;
  242. transition: all var(--transition);
  243. white-space: nowrap;
  244. }
  245. .btn-primary {
  246. background: var(--blue);
  247. color: #fff;
  248. }
  249. .btn-primary:hover { opacity: 0.9; box-shadow: 0 2px 8px var(--blue-glow); }
  250. .btn-success {
  251. background: var(--green);
  252. color: #fff;
  253. }
  254. .btn-success:hover { opacity: 0.9; box-shadow: 0 2px 8px var(--green-soft); }
  255. .btn-danger {
  256. background: var(--red);
  257. color: #fff;
  258. }
  259. .btn-danger:hover { opacity: 0.9; box-shadow: 0 2px 8px var(--red-soft); }
  260. .run-group {
  261. display: flex;
  262. align-items: center;
  263. gap: 4px;
  264. }
  265. .run-count-input {
  266. width: 42px;
  267. padding: 6px 4px;
  268. text-align: center;
  269. background: var(--bg-base);
  270. border: 1px solid var(--border);
  271. border-radius: var(--radius-sm);
  272. color: var(--text-primary);
  273. font-family: 'JetBrains Mono', monospace;
  274. font-size: 13px;
  275. font-weight: 600;
  276. outline: none;
  277. }
  278. .run-count-input:focus { border-color: var(--blue); }
  279. .run-count-input::-webkit-inner-spin-button { opacity: 0.5; }
  280. .btn-success:disabled, .btn-primary:disabled, .btn-danger:disabled { background: var(--bg-elevated); color: var(--text-muted); cursor: not-allowed; box-shadow: none; }
  281. .run-count-input:disabled { opacity: 0.5; cursor: not-allowed; }
  282. .btn-ghost {
  283. background: transparent;
  284. color: var(--text-secondary);
  285. padding: 6px;
  286. border-radius: var(--radius-sm);
  287. }
  288. .btn-ghost:hover { background: var(--bg-hover); color: var(--text-primary); }
  289. .btn-outline {
  290. background: transparent;
  291. border: 1px solid var(--border);
  292. color: var(--text-secondary);
  293. }
  294. .btn-outline:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-soft); }
  295. .btn-sm { padding: 5px 12px; font-size: 12px; }
  296. .btn-xs { padding: 4px 10px; font-size: 11px; }
  297. /* ============================================================
  298. Extension Updates
  299. ============================================================ */
  300. #update-section { margin-bottom: 14px; }
  301. .update-card {
  302. background: var(--bg-surface);
  303. border: 1px solid var(--border);
  304. border-radius: var(--radius-md);
  305. padding: 12px 14px;
  306. display: flex;
  307. flex-direction: column;
  308. gap: 12px;
  309. box-shadow: var(--shadow-sm);
  310. }
  311. .update-card-header {
  312. display: flex;
  313. flex-wrap: wrap;
  314. align-items: flex-start;
  315. justify-content: space-between;
  316. gap: 12px;
  317. }
  318. .update-card-copy {
  319. min-width: 0;
  320. display: flex;
  321. flex-direction: column;
  322. gap: 4px;
  323. }
  324. .update-card-version {
  325. font-size: 14px;
  326. font-weight: 700;
  327. color: var(--orange);
  328. }
  329. .update-card-summary {
  330. font-size: 12px;
  331. color: var(--text-secondary);
  332. line-height: 1.6;
  333. }
  334. .update-release-list {
  335. display: flex;
  336. flex-direction: column;
  337. gap: 10px;
  338. }
  339. .update-release-item {
  340. padding-top: 10px;
  341. border-top: 1px solid var(--border-subtle);
  342. }
  343. .update-release-item:first-child {
  344. padding-top: 0;
  345. border-top: none;
  346. }
  347. .update-release-head {
  348. display: flex;
  349. justify-content: space-between;
  350. align-items: baseline;
  351. gap: 8px;
  352. margin-bottom: 6px;
  353. }
  354. .update-release-title-row {
  355. display: flex;
  356. align-items: baseline;
  357. gap: 8px;
  358. min-width: 0;
  359. }
  360. .update-release-version {
  361. font-size: 13px;
  362. font-weight: 700;
  363. color: var(--text-primary);
  364. }
  365. .update-release-name {
  366. min-width: 0;
  367. font-size: 12px;
  368. color: var(--text-secondary);
  369. white-space: nowrap;
  370. overflow: hidden;
  371. text-overflow: ellipsis;
  372. }
  373. .update-release-date {
  374. flex-shrink: 0;
  375. font-family: 'JetBrains Mono', 'Consolas', monospace;
  376. font-size: 11px;
  377. color: var(--text-muted);
  378. }
  379. .update-release-notes {
  380. margin: 0;
  381. padding-left: 18px;
  382. color: var(--text-secondary);
  383. font-size: 12px;
  384. line-height: 1.55;
  385. }
  386. .update-release-notes li + li { margin-top: 4px; }
  387. .update-release-empty {
  388. font-size: 12px;
  389. color: var(--text-muted);
  390. }
  391. /* ============================================================
  392. Data Card
  393. ============================================================ */
  394. #data-section { margin-bottom: 14px; }
  395. .data-card {
  396. background: var(--bg-surface);
  397. border: 1px solid var(--border);
  398. border-radius: var(--radius-md);
  399. padding: 12px 14px;
  400. display: flex;
  401. flex-direction: column;
  402. gap: 9px;
  403. box-shadow: var(--shadow-sm);
  404. }
  405. .data-card.is-locked {
  406. position: relative;
  407. overflow: hidden;
  408. }
  409. .data-card.is-locked::after {
  410. content: '';
  411. position: absolute;
  412. inset: 0;
  413. border-radius: inherit;
  414. background: color-mix(in srgb, var(--bg-base) 18%, transparent);
  415. pointer-events: none;
  416. }
  417. .section-mini-header {
  418. display: flex;
  419. align-items: center;
  420. justify-content: space-between;
  421. gap: 8px;
  422. }
  423. .section-mini-copy {
  424. min-width: 0;
  425. display: flex;
  426. flex-direction: column;
  427. gap: 2px;
  428. }
  429. .section-mini-copy .section-label {
  430. font-size: 14px;
  431. letter-spacing: 0.04em;
  432. }
  433. .section-mini-actions {
  434. display: flex;
  435. align-items: center;
  436. gap: 6px;
  437. flex-wrap: wrap;
  438. justify-content: flex-end;
  439. }
  440. .data-row {
  441. display: flex;
  442. align-items: center;
  443. gap: 8px;
  444. }
  445. .data-check-row {
  446. align-items: flex-start;
  447. }
  448. .data-inline {
  449. display: flex;
  450. align-items: center;
  451. gap: 8px;
  452. flex: 1;
  453. min-width: 0;
  454. }
  455. .data-value-actions {
  456. justify-content: space-between;
  457. }
  458. .input-with-icon {
  459. position: relative;
  460. flex: 1;
  461. min-width: 0;
  462. display: flex;
  463. align-items: center;
  464. }
  465. .data-label {
  466. width: 56px;
  467. font-size: 11px;
  468. font-weight: 700;
  469. color: var(--text-muted);
  470. text-transform: uppercase;
  471. letter-spacing: 0.06em;
  472. flex-shrink: 0;
  473. }
  474. .data-value {
  475. font-size: 13px;
  476. color: var(--text-muted);
  477. min-width: 0;
  478. }
  479. .data-value-fill {
  480. flex: 1;
  481. }
  482. .data-value.has-value { color: var(--text-primary); }
  483. .mono {
  484. font-family: 'JetBrains Mono', 'Consolas', monospace;
  485. font-size: 12px;
  486. }
  487. .truncate {
  488. overflow: hidden;
  489. text-overflow: ellipsis;
  490. white-space: nowrap;
  491. }
  492. .data-input {
  493. flex: 1;
  494. padding: 7px 10px;
  495. background: var(--bg-base);
  496. border: 1px solid var(--border);
  497. border-radius: var(--radius-sm);
  498. color: var(--text-primary);
  499. font-family: 'JetBrains Mono', monospace;
  500. font-size: 13px;
  501. outline: none;
  502. transition: border-color var(--transition), box-shadow var(--transition);
  503. min-width: 0;
  504. }
  505. .data-input::placeholder { color: var(--text-muted); }
  506. .data-input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-soft); }
  507. .data-textarea {
  508. width: 100%;
  509. min-height: 88px;
  510. resize: vertical;
  511. padding: 8px 10px;
  512. background: var(--bg-base);
  513. border: 1px solid var(--border);
  514. border-radius: var(--radius-sm);
  515. color: var(--text-primary);
  516. font-family: 'JetBrains Mono', monospace;
  517. font-size: 12px;
  518. outline: none;
  519. transition: border-color var(--transition), box-shadow var(--transition);
  520. }
  521. .data-textarea::placeholder { color: var(--text-muted); }
  522. .data-textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-soft); }
  523. .data-input-with-icon {
  524. padding-right: 38px;
  525. }
  526. .input-icon-btn {
  527. position: absolute;
  528. right: 8px;
  529. width: 24px;
  530. height: 24px;
  531. padding: 0;
  532. display: inline-flex;
  533. align-items: center;
  534. justify-content: center;
  535. border: none;
  536. background: transparent;
  537. color: var(--text-muted);
  538. cursor: pointer;
  539. border-radius: 999px;
  540. transition: color var(--transition), background var(--transition);
  541. }
  542. .input-icon-btn:hover {
  543. color: var(--text-primary);
  544. background: var(--bg-hover);
  545. }
  546. .choice-group {
  547. flex: 1;
  548. min-width: 0;
  549. display: inline-flex;
  550. align-items: center;
  551. gap: 6px;
  552. }
  553. .choice-btn {
  554. flex: 1;
  555. min-width: 0;
  556. padding: 7px 10px;
  557. border: 1px solid var(--border);
  558. border-radius: var(--radius-sm);
  559. background: var(--bg-base);
  560. color: var(--text-secondary);
  561. font-size: 12px;
  562. font-weight: 600;
  563. cursor: pointer;
  564. transition: border-color var(--transition), background var(--transition), color var(--transition), box-shadow var(--transition);
  565. }
  566. .choice-btn:hover {
  567. border-color: var(--blue);
  568. color: var(--blue);
  569. background: var(--blue-soft);
  570. }
  571. .choice-btn.is-active {
  572. border-color: var(--blue);
  573. color: var(--blue);
  574. background: var(--blue-soft);
  575. box-shadow: 0 0 0 1px var(--blue-glow);
  576. }
  577. .choice-btn:disabled {
  578. border-color: var(--border);
  579. background: var(--bg-elevated);
  580. color: var(--text-muted);
  581. cursor: not-allowed;
  582. box-shadow: none;
  583. }
  584. .choice-btn:disabled:hover {
  585. border-color: var(--border);
  586. background: var(--bg-elevated);
  587. color: var(--text-muted);
  588. }
  589. #btn-fetch-email,
  590. #btn-save-settings {
  591. padding-inline: 10px;
  592. flex-shrink: 0;
  593. }
  594. .data-inline-btn {
  595. flex-shrink: 0;
  596. min-width: 56px;
  597. justify-content: center;
  598. }
  599. .hotmail-card {
  600. margin-top: 10px;
  601. }
  602. .hotmail-actions-row .data-label {
  603. visibility: hidden;
  604. }
  605. .hotmail-import-row {
  606. align-items: flex-start;
  607. }
  608. .hotmail-import-box {
  609. flex: 1;
  610. display: flex;
  611. flex-direction: column;
  612. gap: 8px;
  613. }
  614. .hotmail-list-shell {
  615. border: 1px solid var(--border-subtle);
  616. border-radius: var(--radius-sm);
  617. background: color-mix(in srgb, var(--bg-base) 82%, transparent);
  618. overflow-y: auto;
  619. overflow-x: hidden;
  620. padding: 2px;
  621. transition: max-height var(--transition), border-color var(--transition), box-shadow var(--transition);
  622. }
  623. .hotmail-list-shell.is-collapsed {
  624. max-height: 236px;
  625. }
  626. .hotmail-list-shell.is-expanded {
  627. max-height: 440px;
  628. }
  629. .hotmail-list-shell::-webkit-scrollbar {
  630. width: 8px;
  631. }
  632. .hotmail-list-shell::-webkit-scrollbar-track {
  633. background: transparent;
  634. }
  635. .hotmail-list-shell::-webkit-scrollbar-thumb {
  636. background: var(--border);
  637. border-radius: 999px;
  638. }
  639. .hotmail-list-shell::-webkit-scrollbar-thumb:hover {
  640. background: var(--text-muted);
  641. }
  642. .hotmail-accounts-list {
  643. display: flex;
  644. flex-direction: column;
  645. gap: 8px;
  646. padding-right: 4px;
  647. }
  648. .hotmail-account-item {
  649. border: 1px solid var(--border);
  650. background: var(--bg-base);
  651. border-radius: var(--radius-sm);
  652. padding: 10px;
  653. display: flex;
  654. flex-direction: column;
  655. gap: 8px;
  656. }
  657. .hotmail-account-item.is-current {
  658. border-color: var(--blue);
  659. box-shadow: 0 0 0 1px var(--blue-glow);
  660. }
  661. .hotmail-account-top {
  662. display: flex;
  663. align-items: center;
  664. justify-content: space-between;
  665. gap: 8px;
  666. }
  667. .hotmail-account-title-row {
  668. min-width: 0;
  669. display: flex;
  670. align-items: center;
  671. gap: 6px;
  672. }
  673. .hotmail-account-email {
  674. font-weight: 600;
  675. color: var(--text-primary);
  676. word-break: break-all;
  677. }
  678. .hotmail-copy-btn {
  679. width: 24px;
  680. height: 24px;
  681. flex: 0 0 auto;
  682. display: inline-flex;
  683. align-items: center;
  684. justify-content: center;
  685. border: none;
  686. border-radius: 999px;
  687. background: transparent;
  688. color: var(--text-muted);
  689. cursor: pointer;
  690. transition: background var(--transition), color var(--transition), transform var(--transition);
  691. }
  692. .hotmail-copy-btn:hover {
  693. background: var(--bg-hover);
  694. color: var(--text-primary);
  695. }
  696. .hotmail-copy-btn:active {
  697. transform: scale(0.96);
  698. }
  699. .hotmail-status-chip {
  700. padding: 2px 8px;
  701. border-radius: 999px;
  702. font-size: 11px;
  703. font-weight: 700;
  704. text-transform: uppercase;
  705. letter-spacing: 0.02em;
  706. }
  707. .hotmail-status-chip.status-authorized {
  708. background: var(--green-soft);
  709. color: var(--green);
  710. }
  711. .hotmail-status-chip.status-used {
  712. background: var(--orange-soft);
  713. color: var(--orange);
  714. }
  715. .hotmail-status-chip.status-disabled {
  716. background: var(--bg-surface);
  717. color: var(--text-secondary);
  718. }
  719. .hotmail-status-chip.status-pending {
  720. background: var(--orange-soft);
  721. color: var(--orange);
  722. }
  723. .hotmail-status-chip.status-error {
  724. background: var(--red-soft);
  725. color: var(--red);
  726. }
  727. .hotmail-account-meta {
  728. display: grid;
  729. grid-template-columns: repeat(2, minmax(0, 1fr));
  730. gap: 6px 10px;
  731. color: var(--text-secondary);
  732. font-size: 12px;
  733. }
  734. .hotmail-account-error {
  735. font-size: 12px;
  736. color: var(--red);
  737. word-break: break-word;
  738. }
  739. .hotmail-account-actions {
  740. display: flex;
  741. flex-wrap: wrap;
  742. gap: 6px;
  743. }
  744. .hotmail-empty {
  745. color: var(--text-muted);
  746. font-size: 12px;
  747. border: 1px dashed var(--border);
  748. border-radius: var(--radius-sm);
  749. padding: 10px;
  750. text-align: center;
  751. }
  752. .data-select {
  753. flex: 1;
  754. padding: 7px 10px;
  755. background: var(--bg-base);
  756. border: 1px solid var(--border);
  757. border-radius: var(--radius-sm);
  758. color: var(--text-primary);
  759. font-family: inherit;
  760. font-size: 13px;
  761. outline: none;
  762. cursor: pointer;
  763. transition: border-color var(--transition);
  764. min-width: 0;
  765. }
  766. .data-select:focus { border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-soft); }
  767. [data-theme="dark"] .data-select { color-scheme: dark; }
  768. .data-check {
  769. display: flex;
  770. align-items: flex-start;
  771. gap: 8px;
  772. flex: 1;
  773. min-width: 0;
  774. font-size: 12px;
  775. line-height: 1.5;
  776. color: var(--text-secondary);
  777. cursor: pointer;
  778. }
  779. .data-check input[type="checkbox"] {
  780. margin-top: 2px;
  781. accent-color: var(--blue);
  782. cursor: pointer;
  783. flex-shrink: 0;
  784. }
  785. .fallback-inline {
  786. justify-content: space-between;
  787. }
  788. .fallback-thread-interval {
  789. display: flex;
  790. align-items: center;
  791. gap: 12px;
  792. margin-left: auto;
  793. }
  794. .toggle-switch {
  795. position: relative;
  796. display: inline-flex;
  797. align-items: center;
  798. flex: 0 0 auto;
  799. cursor: pointer;
  800. }
  801. .toggle-switch > span:not(.toggle-switch-track) {
  802. display: none;
  803. }
  804. .toggle-switch input {
  805. position: absolute;
  806. opacity: 0;
  807. width: 1px;
  808. height: 1px;
  809. pointer-events: none;
  810. }
  811. .toggle-switch-track {
  812. width: 38px;
  813. height: 22px;
  814. border-radius: 999px;
  815. border: 1px solid var(--border);
  816. background: var(--bg-elevated);
  817. display: inline-flex;
  818. align-items: center;
  819. padding: 2px;
  820. transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
  821. }
  822. .toggle-switch-thumb {
  823. width: 16px;
  824. height: 16px;
  825. border-radius: 50%;
  826. background: var(--bg-base);
  827. box-shadow: var(--shadow-sm);
  828. transition: transform var(--transition), background var(--transition);
  829. }
  830. .toggle-switch input:checked + .toggle-switch-track {
  831. background: var(--blue-soft);
  832. border-color: var(--blue);
  833. }
  834. .toggle-switch input:checked + .toggle-switch-track .toggle-switch-thumb {
  835. transform: translateX(16px);
  836. background: var(--blue);
  837. }
  838. .toggle-switch input:disabled + .toggle-switch-track {
  839. opacity: 0.55;
  840. }
  841. .auto-delay-inline {
  842. justify-content: space-between;
  843. gap: 12px;
  844. flex-wrap: nowrap;
  845. }
  846. .auto-delay-side {
  847. display: flex;
  848. align-items: center;
  849. gap: 12px;
  850. flex: 0 1 auto;
  851. min-width: 0;
  852. }
  853. .auto-delay-side-right {
  854. margin-left: auto;
  855. justify-content: flex-end;
  856. }
  857. .auto-delay-check {
  858. flex: 0 0 auto;
  859. align-items: center;
  860. }
  861. .auto-delay-check span {
  862. white-space: nowrap;
  863. }
  864. .auto-delay-caption {
  865. font-size: 12px;
  866. font-weight: 600;
  867. color: var(--text-muted);
  868. flex: 0 0 auto;
  869. white-space: nowrap;
  870. }
  871. .auto-delay-controls {
  872. display: flex;
  873. align-items: center;
  874. gap: 8px;
  875. flex-shrink: 0;
  876. }
  877. .auto-delay-input {
  878. width: 72px;
  879. flex: 0 0 auto;
  880. text-align: center;
  881. }
  882. .data-unit {
  883. font-size: 12px;
  884. font-weight: 600;
  885. color: var(--text-muted);
  886. flex-shrink: 0;
  887. }
  888. /* Status Bar */
  889. .status-bar {
  890. display: flex;
  891. align-items: center;
  892. gap: 8px;
  893. margin-top: 8px;
  894. padding: 8px 12px;
  895. background: var(--bg-surface);
  896. border: 1px solid var(--border);
  897. border-radius: var(--radius-sm);
  898. font-size: 13px;
  899. font-weight: 500;
  900. color: var(--text-secondary);
  901. box-shadow: var(--shadow-sm);
  902. }
  903. .status-dot {
  904. width: 8px;
  905. height: 8px;
  906. border-radius: 50%;
  907. background: var(--text-muted);
  908. flex-shrink: 0;
  909. transition: background var(--transition);
  910. }
  911. .status-bar.running .status-dot {
  912. background: var(--orange);
  913. animation: pulse 1.5s ease-in-out infinite;
  914. }
  915. .status-bar.running { color: var(--orange); }
  916. .status-bar.completed .status-dot { background: var(--green); }
  917. .status-bar.completed { color: var(--green); }
  918. .status-bar.failed .status-dot { background: var(--red); }
  919. .status-bar.failed { color: var(--red); }
  920. .status-bar.stopped .status-dot { background: var(--cyan); }
  921. .status-bar.stopped { color: var(--cyan); }
  922. .status-bar.paused .status-dot {
  923. background: var(--orange);
  924. animation: pulse 1.5s ease-in-out infinite;
  925. }
  926. .status-bar.paused { color: var(--orange); }
  927. .status-bar.scheduled .status-dot {
  928. background: var(--blue);
  929. animation: pulse 1.5s ease-in-out infinite;
  930. }
  931. .status-bar.scheduled { color: var(--blue); }
  932. @keyframes pulse {
  933. 0%, 100% { opacity: 1; transform: scale(1); }
  934. 50% { opacity: 0.4; transform: scale(0.85); }
  935. }
  936. /* Auto Continue Bar */
  937. .auto-continue-bar {
  938. margin-top: 8px;
  939. padding: 8px 10px;
  940. background: var(--orange-soft);
  941. border: 1px solid rgba(234, 88, 12, 0.2);
  942. border-radius: var(--radius-sm);
  943. display: flex;
  944. align-items: center;
  945. gap: 8px;
  946. }
  947. .auto-continue-bar svg { color: var(--orange); flex-shrink: 0; }
  948. .auto-hint { font-size: 13px; color: var(--orange); flex: 1; font-weight: 500; }
  949. .auto-schedule-bar {
  950. margin-top: 8px;
  951. padding: 10px;
  952. background: var(--blue-soft);
  953. border: 1px solid rgba(37, 99, 235, 0.2);
  954. border-radius: var(--radius-sm);
  955. display: flex;
  956. align-items: center;
  957. flex-wrap: wrap;
  958. gap: 10px;
  959. }
  960. .auto-schedule-bar svg {
  961. color: var(--blue);
  962. flex-shrink: 0;
  963. }
  964. .auto-schedule-copy {
  965. display: flex;
  966. flex-direction: column;
  967. gap: 2px;
  968. flex: 1;
  969. min-width: 0;
  970. }
  971. .auto-schedule-title {
  972. font-size: 13px;
  973. font-weight: 700;
  974. color: var(--blue);
  975. }
  976. .auto-schedule-meta {
  977. font-size: 12px;
  978. line-height: 1.5;
  979. color: var(--text-secondary);
  980. }
  981. .auto-schedule-actions {
  982. display: flex;
  983. align-items: center;
  984. flex-wrap: wrap;
  985. gap: 8px;
  986. flex-shrink: 0;
  987. }
  988. /* ============================================================
  989. Steps Section
  990. ============================================================ */
  991. #steps-section { margin-bottom: 14px; }
  992. .steps-header {
  993. display: flex;
  994. justify-content: space-between;
  995. align-items: center;
  996. margin-bottom: 8px;
  997. }
  998. .section-label {
  999. font-size: 11px;
  1000. font-weight: 700;
  1001. color: var(--text-muted);
  1002. text-transform: uppercase;
  1003. letter-spacing: 0.08em;
  1004. }
  1005. .steps-progress {
  1006. font-family: 'JetBrains Mono', monospace;
  1007. font-size: 11px;
  1008. font-weight: 600;
  1009. color: var(--text-muted);
  1010. background: var(--bg-surface);
  1011. padding: 2px 8px;
  1012. border-radius: 10px;
  1013. border: 1px solid var(--border);
  1014. }
  1015. .steps-list {
  1016. display: flex;
  1017. flex-direction: column;
  1018. gap: 5px;
  1019. }
  1020. .step-row {
  1021. display: flex;
  1022. align-items: center;
  1023. gap: 8px;
  1024. padding: 1px 0;
  1025. transition: opacity var(--transition);
  1026. }
  1027. /* Step Number Indicator */
  1028. .step-indicator {
  1029. width: 26px;
  1030. height: 26px;
  1031. border-radius: 50%;
  1032. background: var(--bg-surface);
  1033. border: 1.5px solid var(--border);
  1034. display: flex;
  1035. align-items: center;
  1036. justify-content: center;
  1037. flex-shrink: 0;
  1038. transition: all var(--transition);
  1039. }
  1040. .step-num {
  1041. font-size: 11px;
  1042. font-weight: 700;
  1043. color: var(--text-muted);
  1044. transition: color var(--transition);
  1045. }
  1046. .step-row.running .step-indicator { border-color: var(--orange); background: var(--orange-soft); }
  1047. .step-row.running .step-num { color: var(--orange); }
  1048. .step-row.running .step-indicator { animation: pulse 1.5s ease-in-out infinite; }
  1049. .step-row.completed .step-indicator { border-color: var(--green); background: var(--green-soft); }
  1050. .step-row.completed .step-num { color: var(--green); }
  1051. .step-row.failed .step-indicator { border-color: var(--red); background: var(--red-soft); }
  1052. .step-row.failed .step-num { color: var(--red); }
  1053. .step-row.stopped .step-indicator { border-color: var(--cyan); background: rgba(8, 145, 178, 0.08); }
  1054. .step-row.stopped .step-num { color: var(--cyan); }
  1055. .step-row.manual_completed .step-indicator,
  1056. .step-row.skipped .step-indicator { border-color: var(--blue); background: var(--blue-soft); }
  1057. .step-row.manual_completed .step-num,
  1058. .step-row.skipped .step-num { color: var(--blue); }
  1059. /* Step Button */
  1060. .step-btn {
  1061. flex: 1;
  1062. padding: 8px 12px;
  1063. font-family: inherit;
  1064. font-size: 13px;
  1065. font-weight: 500;
  1066. color: var(--text-primary);
  1067. background: var(--bg-surface);
  1068. border: 1px solid var(--border);
  1069. border-radius: var(--radius-sm);
  1070. cursor: pointer;
  1071. text-align: left;
  1072. transition: all var(--transition);
  1073. box-shadow: var(--shadow-sm);
  1074. }
  1075. .step-btn:hover:not(:disabled) { background: var(--bg-hover); border-color: var(--blue); }
  1076. .step-btn:disabled { color: var(--text-muted); background: var(--bg-base); border-color: var(--border-subtle); cursor: not-allowed; opacity: 0.45; box-shadow: none; }
  1077. .step-row.running .step-btn { border-color: var(--orange); color: var(--orange); }
  1078. .step-row.completed .step-btn { border-color: var(--border-subtle); color: var(--text-secondary); opacity: 0.7; }
  1079. .step-row.failed .step-btn { border-color: var(--red); color: var(--red); }
  1080. .step-row.stopped .step-btn { border-color: var(--cyan); color: var(--cyan); }
  1081. .step-row.manual_completed .step-btn,
  1082. .step-row.skipped .step-btn { border-color: rgba(37, 99, 235, 0.25); color: var(--blue); opacity: 0.82; }
  1083. .step-actions {
  1084. display: flex;
  1085. align-items: center;
  1086. justify-content: flex-end;
  1087. gap: 6px;
  1088. width: 48px;
  1089. flex-shrink: 0;
  1090. }
  1091. .step-manual-btn {
  1092. width: 20px;
  1093. height: 20px;
  1094. padding: 0;
  1095. display: inline-flex;
  1096. align-items: center;
  1097. justify-content: center;
  1098. border: 1px solid var(--border);
  1099. border-radius: 999px;
  1100. background: var(--bg-surface);
  1101. color: var(--text-muted);
  1102. cursor: pointer;
  1103. transition: all var(--transition);
  1104. }
  1105. .step-manual-btn:hover:not(:disabled) {
  1106. border-color: var(--blue);
  1107. color: var(--blue);
  1108. background: var(--blue-soft);
  1109. }
  1110. .step-manual-btn:disabled {
  1111. color: var(--text-muted);
  1112. border-color: var(--border-subtle);
  1113. background: var(--bg-base);
  1114. cursor: not-allowed;
  1115. opacity: 0.5;
  1116. }
  1117. .step-status {
  1118. width: 20px;
  1119. text-align: center;
  1120. font-size: 14px;
  1121. font-weight: 700;
  1122. flex-shrink: 0;
  1123. }
  1124. .step-row.completed .step-status { color: var(--green); }
  1125. .step-row.failed .step-status { color: var(--red); }
  1126. .step-row.stopped .step-status { color: var(--cyan); }
  1127. .step-row.manual_completed .step-status,
  1128. .step-row.skipped .step-status { color: var(--blue); }
  1129. /* ============================================================
  1130. Log / Console Section
  1131. ============================================================ */
  1132. .log-header {
  1133. display: flex;
  1134. justify-content: space-between;
  1135. align-items: center;
  1136. margin-bottom: 6px;
  1137. }
  1138. #log-area {
  1139. background: var(--bg-surface);
  1140. border: 1px solid var(--border);
  1141. border-radius: var(--radius-md);
  1142. padding: 10px 12px;
  1143. height: 220px;
  1144. overflow-y: auto;
  1145. font-family: 'JetBrains Mono', 'Consolas', monospace;
  1146. font-size: 12px;
  1147. line-height: 1.7;
  1148. color: var(--text-secondary);
  1149. box-shadow: var(--shadow-sm);
  1150. }
  1151. #log-area::-webkit-scrollbar { width: 5px; }
  1152. #log-area::-webkit-scrollbar-track { background: transparent; }
  1153. #log-area::-webkit-scrollbar-thumb { background: var(--bg-elevated); border-radius: 4px; }
  1154. #log-area::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }
  1155. .log-line { padding: 2.5px 0; }
  1156. .log-line + .log-line { border-top: 1px solid var(--border-subtle); }
  1157. .log-time { color: var(--text-muted); }
  1158. .log-level { font-weight: 700; margin: 0 2px; }
  1159. .log-level-info { color: var(--blue); }
  1160. .log-level-ok { color: var(--green); }
  1161. .log-level-warn { color: var(--orange); }
  1162. .log-level-error { color: var(--red); }
  1163. .log-step-tag {
  1164. display: inline-block;
  1165. padding: 1px 5px;
  1166. border-radius: 3px;
  1167. font-weight: 700;
  1168. font-size: 11px;
  1169. margin-right: 3px;
  1170. }
  1171. .log-step-tag.step-1 { color: var(--cyan); background: rgba(8, 145, 178, 0.08); }
  1172. .log-step-tag.step-2 { color: var(--purple); background: rgba(124, 58, 237, 0.08); }
  1173. .log-step-tag.step-3 { color: #b45309; background: rgba(180, 83, 9, 0.06); }
  1174. [data-theme="dark"] .log-step-tag.step-3 { color: #fbbf24; background: rgba(251, 191, 36, 0.1); }
  1175. .log-step-tag.step-4 { color: var(--orange); background: var(--orange-soft); }
  1176. .log-step-tag.step-5 { color: var(--green); background: var(--green-soft); }
  1177. .log-step-tag.step-6 { color: var(--cyan); background: rgba(8, 145, 178, 0.08); }
  1178. .log-step-tag.step-7 { color: var(--orange); background: var(--orange-soft); }
  1179. .log-step-tag.step-8 { color: var(--purple); background: rgba(124, 58, 237, 0.08); }
  1180. .log-step-tag.step-9 { color: var(--green); background: var(--green-soft); }
  1181. .log-msg { color: var(--text-secondary); }
  1182. .log-line.log-ok .log-msg { color: var(--green); font-weight: 500; }
  1183. .log-line.log-error .log-msg { color: var(--red); font-weight: 500; }
  1184. .log-line.log-warn .log-msg { color: var(--orange); }
  1185. /* ============================================================
  1186. Animations
  1187. ============================================================ */
  1188. @keyframes fadeIn {
  1189. from { opacity: 0; transform: translateY(3px); }
  1190. to { opacity: 1; transform: translateY(0); }
  1191. }
  1192. .log-line { animation: fadeIn 120ms ease-out; }
  1193. /* ============================================================
  1194. Modal
  1195. ============================================================ */
  1196. .modal-overlay {
  1197. position: fixed;
  1198. inset: 0;
  1199. z-index: 1200;
  1200. display: flex;
  1201. align-items: center;
  1202. justify-content: center;
  1203. padding: 16px;
  1204. background: rgba(15, 17, 23, 0.32);
  1205. backdrop-filter: blur(2px);
  1206. }
  1207. .modal-overlay[hidden] {
  1208. display: none !important;
  1209. }
  1210. .modal-card {
  1211. width: min(100%, 320px);
  1212. background: var(--bg-base);
  1213. border: 1px solid var(--border);
  1214. border-radius: 12px;
  1215. box-shadow: var(--shadow-md), 0 18px 36px rgba(0, 0, 0, 0.18);
  1216. padding: 14px;
  1217. }
  1218. .modal-header {
  1219. display: flex;
  1220. align-items: center;
  1221. justify-content: space-between;
  1222. gap: 10px;
  1223. margin-bottom: 10px;
  1224. }
  1225. .modal-title {
  1226. font-size: 14px;
  1227. font-weight: 700;
  1228. color: var(--text-primary);
  1229. }
  1230. .modal-close {
  1231. width: 26px;
  1232. height: 26px;
  1233. border: none;
  1234. border-radius: 999px;
  1235. background: transparent;
  1236. color: var(--text-muted);
  1237. cursor: pointer;
  1238. font-size: 18px;
  1239. line-height: 1;
  1240. transition: all var(--transition);
  1241. }
  1242. .modal-close:hover {
  1243. background: var(--bg-hover);
  1244. color: var(--text-primary);
  1245. }
  1246. .modal-message {
  1247. font-size: 13px;
  1248. line-height: 1.55;
  1249. color: var(--text-secondary);
  1250. margin-bottom: 14px;
  1251. }
  1252. .modal-option-row {
  1253. margin-bottom: 14px;
  1254. }
  1255. .modal-option-label {
  1256. display: flex;
  1257. align-items: center;
  1258. gap: 8px;
  1259. font-size: 12px;
  1260. color: var(--text-secondary);
  1261. cursor: pointer;
  1262. }
  1263. .modal-option-label input[type="checkbox"] {
  1264. accent-color: var(--blue);
  1265. cursor: pointer;
  1266. }
  1267. .modal-actions {
  1268. display: flex;
  1269. justify-content: flex-end;
  1270. gap: 8px;
  1271. }
  1272. /* ============================================================
  1273. Toast Notifications
  1274. ============================================================ */
  1275. #toast-container {
  1276. position: fixed;
  1277. bottom: 12px;
  1278. left: 12px;
  1279. right: 12px;
  1280. z-index: 1000;
  1281. display: flex;
  1282. flex-direction: column;
  1283. gap: 6px;
  1284. pointer-events: none;
  1285. }
  1286. .toast {
  1287. display: flex;
  1288. align-items: center;
  1289. gap: 8px;
  1290. padding: 10px 14px;
  1291. border-radius: var(--radius-md);
  1292. font-size: 13px;
  1293. font-weight: 500;
  1294. box-shadow: var(--shadow-md), 0 4px 12px rgba(0,0,0,0.1);
  1295. pointer-events: auto;
  1296. animation: toastIn 250ms ease-out;
  1297. border: 1px solid;
  1298. }
  1299. .toast.toast-exit {
  1300. animation: toastOut 200ms ease-in forwards;
  1301. }
  1302. .toast-error {
  1303. background: var(--red-soft);
  1304. border-color: var(--red);
  1305. color: var(--red);
  1306. }
  1307. .toast-warn {
  1308. background: var(--orange-soft);
  1309. border-color: var(--orange);
  1310. color: var(--orange);
  1311. }
  1312. .toast-success {
  1313. background: var(--green-soft);
  1314. border-color: var(--green);
  1315. color: var(--green);
  1316. }
  1317. .toast-info {
  1318. background: var(--blue-soft);
  1319. border-color: var(--blue);
  1320. color: var(--blue);
  1321. }
  1322. .toast svg {
  1323. flex-shrink: 0;
  1324. }
  1325. .toast-msg {
  1326. flex: 1;
  1327. }
  1328. .toast-close {
  1329. background: none;
  1330. border: none;
  1331. color: inherit;
  1332. opacity: 0.6;
  1333. cursor: pointer;
  1334. padding: 2px;
  1335. font-size: 16px;
  1336. line-height: 1;
  1337. }
  1338. .toast-close:hover { opacity: 1; }
  1339. @keyframes toastIn {
  1340. from { opacity: 0; transform: translateY(-10px) scale(0.96); }
  1341. to { opacity: 1; transform: translateY(0) scale(1); }
  1342. }
  1343. @keyframes toastOut {
  1344. from { opacity: 1; transform: translateY(0) scale(1); }
  1345. to { opacity: 0; transform: translateY(-10px) scale(0.96); }
  1346. }
  1347. @media (prefers-reduced-motion: reduce) {
  1348. *, *::before, *::after {
  1349. animation-duration: 0.01ms !important;
  1350. transition-duration: 0.01ms !important;
  1351. }
  1352. }