trphoenix
2025-12-11 0c69f9264794397aaa8143acccb0171b645b191a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
/*
--------------------------- --------------------------- --------------------------- 
--------------------------- --------------------------- --------------------------- 
    Mado Miniflow - Obsidian Theme by hydescarf
    https://github.com/hydescarf/Obsidian-Theme-Mado-Miniflow
--------------------------- --------------------------- --------------------------- 
--------------------------- --------------------------- --------------------------- 
*/
 
body{
    /* --accent-h: 210; */
    /* --accent-s: 93%; */
    /* --accent-l: 62%; */
    --accent-h: 254;
    --accent-s: 80%;
    --accent-l: 68%;
    
    --bgcolor-h:204;
    --bgcolor-s:45%;
    --bgcolor-l:97%;
    
    --titlebar-background:var(--background-secondary);
    --titlebar-background-focused:var(--background-secondary);
    
    --background-modifier-hover:var(--color-base-hover);
    
    --bold-weight:var(--font-bold);
    --italic-color:var(--text-muted);
    --code-normal:var(--text-muted);
    --blockquote-color:var(--color-muted);
    
    --background-primary:var(--color-base-00);
    --background-secondary:var(--color-base-20);
    --checklist-done-color:var(--color-base-50);
    
    --icon-m:20px;
    --icon-l:20px;    
    --divider-width:4px;
    --callout-padding:0px;
    --callout-title-padding:11px;
    --callout-content-padding:0 11px 0 27px;
    
    --embed-padding:13px 23px;
    --list-indent:37px;
    
    --header-height:43px;
    --tab-stacked-header-width:53px;
    
    
    /* custom */
    --border:1px solid var(--tab-outline-color);
    --button-radius:4px;
    --panel-radius:8px;
    --window-radius:23px;
    --button-padding-icon:7px;
    --button-padding-long:7px 15px;
    
    --background-fourth:var(--color-base-00-0);
    --background-fifth:var(--color-base-20-0);
    --panel-shadow:0 1px 3px var(--color-base-shadow);
    --panel-shadow-hover:0 3px 5px var(--color-base-shadow-hover);
    --window-shadow:0 0 9px var(--color-base-shadow-hover);
    --window-shadow-left:-4px 0 5px var(--color-base-shadow-hover);
    --window-shadow-right:4px 0 5px var(--color-base-shadow-hover);
    
    --sidebar-size-left:270px;
    --sidebar-size-right:270px;
    
    
    --color-strikethrough:var(--text-faint);
    --italic-color:var(--color-italic);
    --inline-code-color:var(--color-red);
    
    
}
body.is-translucent{
    --background-primary:var(--color-base-00-trans);
    --background-secondary:var(--color-base-20-trans);
    --background-fourth:var(--color-base-00-0-trans);
}
body.toggle-tab-height{
    --header-height:35px;
}
 
 
.theme-light,
.is-mobile.theme-light,
.is-tablet.theme-light{
    --color-base-00:hsla(calc(var(--bgcolor-h) - 0), calc(var(--bgcolor-s) - 0%), calc(var(--bgcolor-l) - 0%), 1);
    --color-base-10:hsla(calc(var(--bgcolor-h) + 6), calc(var(--bgcolor-s) - 6%), calc(var(--bgcolor-l) - 4%), 1);
    
    --color-base-05:hsla(calc(var(--bgcolor-h) + 3), calc(var(--bgcolor-s) - 28%), calc(var(--bgcolor-l) - 7%), 1);
    --color-base-20:hsla(calc(var(--bgcolor-h) + 9), calc(var(--bgcolor-s) - 0%), calc(var(--bgcolor-l) - 2%), 1);
    
    --color-base-00-trans:hsla(calc(var(--bgcolor-h) - 0), calc(var(--bgcolor-s) - 0%), calc(var(--bgcolor-l) - 0%), 0.5); /*for transparency background*/
    --color-base-20-trans:hsla(calc(var(--bgcolor-h) + 6), calc(var(--bgcolor-s) - 8%), calc(var(--bgcolor-l) - 2%), 0.5);
    --color-base-00-0:hsla(calc(var(--bgcolor-h) - 27), calc(var(--bgcolor-s) - 12%), calc(var(--bgcolor-l) + 2%), 1); /* very white */
    --color-base-20-0:hsla(calc(var(--bgcolor-h) + 3), calc(var(--bgcolor-s) - 27%), calc(var(--bgcolor-l) - 7%), 0.1); /* hovered version for above */
    --color-base-00-0-trans:hsla(calc(var(--bgcolor-h) - 20), calc(var(--bgcolor-s) - 12%), calc(var(--bgcolor-l) + 2%), 0.5);
    --color-base-shadow:hsla(212, 17%, 80%, 0.2); /* shadow */
    --color-base-shadow-hover:hsla(212, 17%, 80%, 0.3); /* shadow hover*/
    --color-base-hover:var(--color-base-shadow-hover); /* hover*/
    
    --color-base-35:hsla(210, 15%, 73%, 1);
    --color-base-50:hsla(217, 15%, 73%, 1);
    --color-base-70:hsla(218, 19%, 39%, 1);    
    --color-base-100:hsla(0, 0%, 13%, 1); /* text-normal color */
  
    --color-accent-1: hsl(calc(var(--accent-h) - 0), calc(var(--accent-s) - 0%), calc(var(--accent-l) + 10%));
    --color-accent-2: hsl(calc(var(--accent-h) - 0), calc(var(--accent-s) - 0%), calc(var(--accent-l) - 5%));
 
    --color-red:hsla(365, 85%, 55%, 1);
    --color-muted:var(--color-base-70);
    --color-italic:hsla(215, 43%, 63%, 1);
    
    --color-highlight:var(--text-normal); /* for highlight text color */
}
.theme-dark,
.is-mobile.theme-dark,
.is-tablet.theme-dark{
    --bgcolor-h:215;
    --bgcolor-s:17%;
    --bgcolor-l:19%;
    
    --color-base-00:hsla(calc(var(--bgcolor-h) - 0), calc(var(--bgcolor-s) - 0%), calc(var(--bgcolor-l) - 0%), 1);
    --color-base-10:hsla(calc(var(--bgcolor-h) - 1), calc(var(--bgcolor-s) + 7%), calc(var(--bgcolor-l) - 4%), 1);
    
    --color-base-05:hsla(calc(var(--bgcolor-h) - 8), calc(var(--bgcolor-s) - 0%), calc(var(--bgcolor-l) - 9%), 0.5);
    --color-base-20:hsla(calc(var(--bgcolor-h) - 1), calc(var(--bgcolor-s) + 7%), calc(var(--bgcolor-l) - 4%), 1);
    
    --color-base-00-trans:hsla(calc(var(--bgcolor-h) - 0), calc(var(--bgcolor-s) - 0%), calc(var(--bgcolor-l) - 0%), 0.5); /*for transparency background*/
    --color-base-20-trans:hsla(calc(var(--bgcolor-h) - 1), calc(var(--bgcolor-s) + 7%), calc(var(--bgcolor-l) - 4%), 0.5);
    --color-base-00-0:hsla(calc(var(--bgcolor-h) - 0), calc(var(--bgcolor-s) - 0%), calc(var(--bgcolor-l) + 3%), 0.9); /* very white */
    --color-base-20-0:hsla(calc(var(--bgcolor-h) - 0), calc(var(--bgcolor-s) - 7%), calc(var(--bgcolor-l) - 9%), 0.1); /* hovered version for above */
    --color-base-00-0-trans:hsla(calc(var(--bgcolor-h) - 0), calc(var(--bgcolor-s) - 0%), calc(var(--bgcolor-l) + 3%), 0.5);
    --color-base-shadow:hsla(207, 10%, 10%, 0.1); /* shadow */
    --color-base-shadow-hover:hsla(212, 17%, 0%, 0.3); /* shadow hover*/
    --color-base-hover:var(--color-base-05); /* hover*/
    
    --color-base-30:hsla(215, 22%, 13%, 1);
    --color-base-35:hsla(210, 15%, 33%, 1);
    --color-base-50:hsla(217, 18%, 50%, 0.7);
    --color-base-70:hsl(218, 17%, 58%);    /* text-muted */
    --color-base-100:hsla(0, 0%, 73%, 1); /* text-normal color */
  
    --color-accent: hsl(calc(var(--accent-h) - 0), calc(var(--accent-s) + 13%), calc(var(--accent-l) + 3%));
    --color-accent-1: hsl(calc(var(--accent-h) - 3), calc(var(--accent-s) - 13%), calc(var(--accent-l) - 3%));
    --color-accent-2: hsl(calc(var(--accent-h) - 0), calc(var(--accent-s) + 7%), calc(var(--accent-l) + 2%));
 
    --color-red:hsla(365, 90%, 65%, 1);
    --color-muted:hsl(218, 17%, 62%);
    --color-italic:hsla(215, 33%, 60%, 1);
    
    --color-highlight:hsla(45, 63%, 63%, 1); /* for highlight text color */
    --text-highlight-bg:hsla(45, 53%, 53%, 1); /* for highlight text underline color */
}
.theme-dark:is(.THT-background,.THT-underline-light){
    --color-highlight:hsla(45, 53%, 13%, 1);
}
.theme-light:is(.THT-underline,.THT-underline-light){
    --color-highlight:var(--color-yellow);
    --text-highlight-bg:hsla(45, 53%, 73%, 1);
}
 
body.theme-daisy-blue{
    --accent-h: 210;
    --accent-s: 93%;
    --accent-l: 62%;
}
body.theme-red-sky{
    --accent-h: 0;
    --accent-s: 88%;
    --accent-l: 57%;
}
body.theme-red-sky.theme-dark{
    --accent-h: 0;
    --accent-s: 73%;
    --accent-l: 57%;
}
body.theme-violette{
    --accent-h: 254;
    --accent-s: 80%;
    --accent-l: 68%;
}
body.theme-violette.theme-dark{
    --accent-h: 255;
    --accent-s: 73%;
    --accent-l: 68%;
}
body.theme-greenery{
    --accent-h: 125;
    --accent-s: 83%;
    --accent-l: 43%;
}
body.theme-greenery.theme-dark{
    --accent-h: 125;
    --accent-s: 81%;
    --accent-l: 38%;
}
body.theme-yellowish{
    --accent-h: 43;
    --accent-s: 76%;
    --accent-l: 50%;
}
body.theme-yellowish.theme-dark{
    --accent-h: 47;
    --accent-s: 85%;
    --accent-l: 50%;
}
body.theme-orange-jist{
    --accent-h: 23;
    --accent-s: 100%;
    --accent-l: 61%;
}
body.theme-deep-blue{
    --accent-h: 229;
    --accent-s: 83%;
    --accent-l: 53%;
}
body.theme-deep-blue.theme-dark{
    --accent-h: 229;
    --accent-s: 78%;
    --accent-l: 63%;
}
body.theme-tea-teal{
    --accent-h: 195;
    --accent-s: 63%;
    --accent-l: 52%;
}
body.theme-magenta-pink{
    --accent-h: 302;
    --accent-s: 70%;
    --accent-l: 60%;
}
body.theme-grayscale{
    --accent-h: 234;
    --accent-s: 15%;
    --accent-l: 45%;
}
body.theme-grayscale.theme-dark{
    --accent-h: 224;
    --accent-s: 12%;
    --accent-l: 63%;
}
 
body.toggle-tab-height-stacked{
    --tab-stacked-header-width:33px;
}
 
 
 
 
 
 
 
/*
--------------------------- --------------------------- 
--------------------------- --------------------------- 
    Mado Layout Basic Styling
--------------------------- --------------------------- 
--------------------------- --------------------------- 
*/
 
body, body.is-translucent{
    background-color:var(--background-secondary);
}
 
/* Background Wave design */
body:not(.toggle-wave-background):before{
    content:"";
    position:absolute;
    width:100%;
    height:100%;
    
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none" xml:space="preserve"><path opacity=".1" d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z"/><path opacity=".2" d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z"/><path opacity=".4" d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z"/></svg>');
    -webkit-mask-size:300% 300px;
    -webkit-mask-position:88.5% -73px;
    -webkit-mask-repeat:no-repeat;
    background-color:var(--color-accent-2);
    transform:rotateZ(180deg);
    opacity:0.5;
}
 
/* remove padding-top when fullscreen in obsidian-ver titlebar */
body.is-frameless:not(.is-hidden-frameless).is-fullscreen{
    padding-top:0;
}
 
/* hidden scrollbar */
body:not(.is-mobile):is(:not(.css-settings-manager),.toggle-scrollbar) ::-webkit-scrollbar-thumb{
    visibility:hidden;
}
body ::-webkit-scrollbar-thumb:hover:hover{
    visibility:initial;
}
 
/* Switching overflow:auto to overlay */
.workspace .mod-root .workspace-tabs.mod-stacked .workspace-tab-container,
body:not(.is-mobile):is(:not(.css-settings-manager),.toggle-scrollbar-overlay) :is(.callout-content,.markdown-rendered pre,.markdown-source-view.mod-cm6 .math-block > mjx-container){
    overflow-x:overlay;
}
body:not(.is-mobile):is(:not(.css-settings-manager),.toggle-scrollbar-overlay) :is(.cm-scroller,.workspace-leaf-content .view-content,.backlink-pane, .outgoing-link-pane,.item-list,.search-result-container.mod-global-search,.open-vault-options,.recent-vaults-list,.workspace-leaf-content .view-content:not(:has(.canvas-wrapper)) .markdown-preview-view,,.community-modal-info,.prompt-results,.suggestion,.vertical-tab-content,.pdf-scroll-container,.nav-files-container){
    overflow-y:overlay;
}
/* Switching overflow:scroll to overlay */
body:not(.is-mobile):is(:not(.css-settings-manager),.toggle-scrollbar-overlay) .CodeMirror-hscrollbar{
    overflow-x:overlay;
}
body:not(.is-mobile):is(:not(.css-settings-manager),.toggle-scrollbar-overlay) .CodeMirror-vscrollbar{
    overflow-y:overlay;
}
 
 
/* remove backgrounds for wave design background */
.workspace,
.workspace-tabs .workspace-leaf,
.workspace-ribbon,
.workspace-split,
.workspace-split .view-content,
.workspace-split.mod-root,
body.is-hidden-frameless:not(.is-fullscreen):is(.is-focused,) .titlebar-button-container:is(.mod-right,.mod-left),
.workspace-tab-header-container{ /* remove background as parent will be the one to have it instead */
    background-color:initial;
    background:none;
}
 
 
/* remove background to adapt translucent mode */
.is-translucent:not(.is-fullscreen) .titlebar,
.is-translucent.is-hidden-frameless:not(.is-fullscreen) .titlebar-button-container.mod-right{
    background:none;
}
 
 
/* remove distinguishing-borders on sidebars and headers */
.workspace-ribbon,
.workspace-tab-header-container{
    border:none;
}
 
/* hide handle visibility when not hovered */
.workspace-leaf-resize-handle{
    border-color:transparent;
}
 
 
/* Toggle visibility on Sidebar Tab Icons */
/* and on Left Sidebar (File Explorer) */
/* and on Toggle Sidebar (3 rows) */
/* and on Ribbon Icons  */
/* and on Main Note Tabs */
/* and on Note Title Header Bar */
/* and on Titlebar (Window Frame) */
body:not(.is-mobile):is(:not(.css-settings-manager),.toggle-sidebar-buttons) .workspace-split.mod-horizontal:is(.mod-left-split, .mod-right-split) .workspace-tab-header-container-inner,
body:not(.is-mobile):is(:not(.css-settings-manager),.toggle-explorer-buttons) .workspace-leaf-content[data-type="file-explorer"] .nav-buttons-container,
body:not(.is-mobile):not(.css-settings-manager) .sidebar-toggle-button:is(.mod-left, .mod-right),
body:not(.is-mobile).toggle-sidebar-toggle-left .sidebar-toggle-button.mod-left,
body:not(.is-mobile).toggle-sidebar-toggle-right .sidebar-toggle-button.mod-right,
body:not(.is-mobile):is(:not(.css-settings-manager),.toggle-side-ribbons) :is(.side-dock-actions, .side-dock-settings),
body:not(.is-mobile).toggle-tab-section .workspace-split.mod-vertical.mod-root :is(.workspace-tabs:not(.mod-stacked) .workspace-tab-header, .workspace-tab-header-new-tab, .workspace-tab-header-tab-list),
body.toggle-note-header .workspace-split.mod-vertical.mod-root .view-header,
body:not(.is-mobile):is(:not(.css-settings-manager),.toggle-titlebar-buttons) .titlebar{
    opacity:0;
    transition:opacity 0.15s;
}
body .workspace-split.mod-horizontal:is(.mod-left-split, .mod-right-split) .workspace-tab-header-container:hover .workspace-tab-header-container-inner,
body .workspace-leaf-content[data-type="file-explorer"] .nav-header:hover .nav-buttons-container,
body .workspace-ribbon.side-dock-ribbon.mod-left:hover :is(.sidebar-toggle-button.mod-left, .side-dock-actions,.side-dock-settings),
body .workspace-split.mod-vertical.mod-root .workspace-tab-header-container:hover:hover:hover:hover div,
body .sidebar-toggle-button:is(.mod-left, .mod-right):hover:hover,
body .titlebar:hover:hover,
body .workspace-split.mod-vertical.mod-root .view-header:hover,
body.toggle-note-header .workspace-split.mod-vertical.mod-root .view-header:focus-within,
body.is-grabbing.is-grabbing .app-container:not(.no-transition) .workspace-split .workspace-tabs .workspace-tab-header-container .workspace-tab-header-container-inner,
body.is-grabbing.is-grabbing.is-grabbing.is-grabbing.is-grabbing .app-container:not(.no-transition) .workspace-split .workspace-tabs .workspace-tab-header-container{
    opacity:1;
}
 
 
 
 
/* remove border-bottom below left-sidebar-toggle button */
.workspace-ribbon.mod-left:before{
    border:none;
}
 
/* Make spacing to match collapsed left-ribbon-dock */
body:not(.is-mobile) .workspace:not(.is-right-sidedock-open) .workspace-split.mod-vertical.mod-root{
    padding-right:var(--ribbon-width);
}
/* Make spacing for left side to match the right spacing during pop-out window mode */
body:not(.is-mobile).is-popout-window .workspace-split.mod-vertical.mod-root{
    padding-left:var(--ribbon-width);
}
.is-mobilebody, .is-mobile .app-container,
.is-mobile .horizontal-main-container,
.workspace-ribbon.mod-left.is-collapsed{
    background:none;
}
 
 
/* Fixed width for left and right sidebar */
:is(.mod-left-split, .mod-right-split) .workspace-leaf-content{
    display:flex;
    flex-direction:column;
    align-self:end;
}
.mod-right-split .workspace-leaf-content{
    align-self:start;
}
body:is(:not(.css-settings-manager),.toggle-sidebar-fixed-left) .mod-left-split .workspace-leaf-content{
    max-width:var(--sidebar-size-left);
}
body:is(:not(.css-settings-manager),.toggle-sidebar-fixed-right) .mod-right-split .workspace-leaf-content{
    max-width:var(--sidebar-size-right);
}
body:is(.toggle-sidebar-fixed-left-auto) .mod-left-split .workspace-leaf-content{
    min-width:var(--sidebar-size-left);
    max-width:fit-content;
}
body:is(.toggle-sidebar-fixed-right-auto) .mod-right-split .workspace-leaf-content{
    min-width:var(--sidebar-size-right);
    max-width:fit-content;
}
 
 
body:is(:not(.css-settings-manager),.toggle-sidebar-right-top) .workspace-split.mod-horizontal.mod-right-split .workspace-tabs.mod-top.mod-top-right-space .workspace-tab-container,
body.toggle-sidebar-left-top .workspace-split.mod-horizontal.mod-left-split .workspace-tabs.mod-top.mod-top-left-space .workspace-tab-container{
    margin-top:37px;
}
 
.workspace-split.mod-horizontal.mod-left-split{
    padding-right:23px;
}
 
.workspace-split.mod-horizontal.mod-right-split{
    padding-left:23px;
}
 
 
 
/* Hide Vault Title */
body:is(:not(.css-settings-manager),.toggle-vault-title) .nav-folder-title[data-path="/"]{
    display:none;
}
.nav-folder-title[data-path="/"]{
    margin-bottom:23px;
}
 
 
/* Vault hidden by default, and show up when hovered at the very bottom part of the sidebar */
body:not(.is-mobile) .workspace-split.mod-left-split .workspace-sidedock-vault-profile{
    margin-bottom:-40px!important;
    opacity:0;
    transition:margin 0.2s, opacity 0.1s;
    padding:5px;
    width: calc(100% + 23px)!important;
}
body:not(.is-mobile) .workspace-split.mod-left-split .workspace-sidedock-vault-profile:hover{
    margin-bottom:0!important;
    opacity:1;
}
body:not(.is-mobile) .workspace-split.mod-left-split .workspace-drawer-vault-switcher{
    padding:0;
}
body:not(.is-mobile) .workspace-split.mod-left-split .workspace-drawer-vault-switcher-icon{
    padding:7px 3px 7px 7px;
}
 
 
 
 
 
 
/*
--------------------------- --------------------------- 
--------------------------- --------------------------- 
    Main Note Pane Desgin
--------------------------- --------------------------- 
--------------------------- --------------------------- 
*/
.workspace-tab-header-container{
    padding:0;
}
/* Extend margin beneath it */
.workspace-split.mod-vertical.mod-root .workspace-tab-header-container{
    margin:0 0 11px 0;
}
body.toggle-tab-height .workspace-split.mod-vertical.mod-root .workspace-tab-header-container{
    margin:0 0 5px 0;
}
 
/* Remove top-margin and increase gap in between tabs */
.workspace-split.mod-vertical.mod-root .workspace-tab-header-container-inner{
    margin:0 -5px;
    gap:0;
    padding-top:0;
}
 
/* Remove tab siblings border-radius design */
.workspace-split.mod-vertical.mod-root .workspace-tab-header:before,
.workspace-split.mod-vertical.mod-root .workspace-tab-header:after,
.workspace .mod-root .workspace-tab-header-inner::after{ /* Remove border-right on tabs that are not active */
    display:none;
}
body.is-translucent .workspace-split.mod-vertical.mod-root .workspace-tabs:not(.mod-stacked) .workspace-leaf{
    background:var(--background-primary)!important;
}
 
 
 
 
 
/* Tab design */
.workspace-split.mod-vertical.mod-root .workspace-tab-header{
    padding:0;
    box-shadow:none;
    margin-top:0;
    background:none;
    padding:5px 3px;
}
.workspace-split.mod-vertical.mod-root .workspace-tabs:not(.mod-stacked) .workspace-tab-header-inner{
    padding:29px 11px 20px;
    border-radius:6px;
    border:1px solid transparent;
    box-shadow:none;
    margin-top:-13px;
    /* background:var(--background-secondary); */
}
.workspace-split.mod-vertical.mod-root .workspace-tabs:not(.mod-stacked) .workspace-tab-header.is-active .workspace-tab-header-inner{
    background:var(--background-primary);
    border:var(--border);
    box-shadow:var(--panel-shadow);
}
.workspace-split.mod-vertical.mod-root .workspace-tabs:not(.mod-stacked) .workspace-tab-header:not(.is-active):hover .workspace-tab-header-inner{
    background:var(--background-modifier-hover);
}
 
 
/* Remove small space on the tab header, as its 100% is based on parent's width+padding-right when right sidebar is collapsed */
body:not(.is-mobile):not(.is-fullscreen) .workspace:not(.is-right-sidedock-open) .mod-top-right-space .workspace-tab-header-container{
    padding-right:calc(var(--frame-right-space) - var(--ribbon-width));
}
body:not(.is-mobile):not(.is-fullscreen) .workspace:not(.is-right-sidedock-open) .workspace-tabs.mod-top-right-space .workspace-tab-header-container:after{
    width:calc(var(--frame-right-space) - var(--ribbon-width));
}
body:not(.is-mobile).is-fullscreen .workspace:not(.is-right-sidedock-open) .mod-top-right-space .workspace-tab-header-container{
    margin-right:calc(1px - var(--ribbon-width) + 4px);
}
 
/* remove margin-top of tab headers that block the possibilities to implement pseudo-clickable area */
.mod-left-split .workspace-tab-header-container-inner,
.mod-right-split .workspace-tab-header-container-inner{
    margin-top:0;
    padding:0;
    gap:0;
}
 
 
/* Prevent sticking-to-top design during obsidian window frame mode */
/* 2nd rows are for independent tabs that are not stick to the top */
/* 3rd row pseudo-clickable area during different tab design */
body.is-frameless:not(.is-hidden-frameless):not(.is-fullscreen) .workspace-split.mod-vertical.mod-root .workspace-tabs.mod-top .workspace-tab-header-container,
.workspace-split.mod-vertical.mod-root .workspace-tabs:not(.mod-top) .workspace-tab-header-container,
body.toggle-tab-design .workspace-split.mod-vertical.mod-root .workspace-tabs .workspace-tab-header-container{
    height:auto;
    margin-bottom:5px;
}
body.is-frameless:not(.is-hidden-frameless):not(.is-fullscreen) .workspace-split.mod-vertical.mod-root .workspace-tabs.mod-top .workspace-tab-header,
.workspace-split.mod-vertical.mod-root .workspace-tabs:not(.mod-top) .workspace-tab-header,
body.toggle-tab-design .workspace-split.mod-vertical.mod-root .workspace-tabs .workspace-tab-header{
    padding-block:5px;
}
body.is-frameless:not(.is-hidden-frameless):not(.is-fullscreen) .workspace-split.mod-vertical.mod-root .workspace-tabs.mod-top .workspace-tab-header-inner,
.workspace-split.mod-vertical.mod-root .workspace-tabs:not(.mod-top) .workspace-tab-header-inner,
body.toggle-tab-design .workspace-split.mod-vertical.mod-root .workspace-tabs .workspace-tab-header-inner{
    padding:4px 11px;
    margin-top:2px;
}
 
 
 
 
/* when header tabs are switched to compact size */
body.is-frameless:not(.is-hidden-frameless):not(.is-fullscreen).toggle-tab-height .workspace-split.mod-vertical.mod-root .workspace-tabs.mod-top .workspace-tab-header-inner,
body.toggle-tab-height .workspace-split.mod-vertical.mod-root .workspace-tabs:not(.mod-top) .workspace-tab-header-inner,
body.toggle-tab-design.toggle-tab-height .workspace-split.mod-vertical.mod-root .workspace-tabs .workspace-tab-header-inner{
    padding:1px 11px;
}
body.is-frameless:not(.is-hidden-frameless):not(.is-fullscreen).toggle-tab-height .workspace-split.mod-vertical.mod-root .workspace-tabs.mod-top .workspace-tab-header-inner,
body.toggle-tab-height .workspace-split.mod-vertical.mod-root .workspace-tabs:not(.mod-top) .workspace-tab-header-inner,
body.toggle-tab-design.toggle-tab-height .workspace-split.mod-vertical.mod-root .workspace-tabs .workspace-tab-header-inner{
    padding:1px 11px;
}
body.toggle-tab-height .workspace-split.mod-vertical.mod-root .workspace-tabs .workspace-tab-header-inner{
    padding:23px 11px 17px;
}
body.toggle-tab-height .workspace-split svg.svg-icon{
    --icon-size:var(--icon-s);
}
body.toggle-tab-height .workspace-split.mod-vertical.mod-root .workspace-tab-header svg.svg-icon{
    --icon-size:var(--icon-xs);
}
body.toggle-tab-height .workspace-split.workspace-horizontal:is(.mod-left-split,.mod-right-split) .sidebar-toggle-button,
body.toggle-tab-height .workspace-ribbon .sidebar-toggle-button{
    height:var(--header-height);
    --icon-size:var(--icon-s);
}
 
 
/* match vertical align for alternative tab design and compact mode */
body.is-frameless:not(.is-hidden-frameless):not(.is-fullscreen) .workspace-split.mod-vertical.mod-root .workspace-tabs.mod-top .workspace-tab-header-container :is(.workspace-tab-header-new-tab, .workspace-tab-header-tab-list, .sidebar-toggle-button) .clickable-icon,
body.toggle-tab-design .workspace-split.mod-vertical.mod-root .workspace-tab-header-container :is(.workspace-tab-header-new-tab, .workspace-tab-header-tab-list, .sidebar-toggle-button) .clickable-icon,
body:not(.toggle-tab-design) .workspace-split.mod-vertical.mod-root .workspace-tabs:not(.mod-top) .workspace-tab-header-container :is(.workspace-tab-header-new-tab, .workspace-tab-header-tab-list, .sidebar-toggle-button) .clickable-icon{
    margin-top:4px;
}
body.toggle-tab-design:not(.toggle-tag-height) .workspace-split.mod-vertical.mod-root .workspace-tab-header-container :is(.workspace-tab-header-new-tab, .workspace-tab-header-tab-list, .sidebar-toggle-button) .clickable-icon:before{
    height:calc(var(--ribbon-width) + 6px);
    margin-top:-6px;
}
 
 
 
 
 
 
/* Main Note Headers spacing */
.workspace-split.mod-vertical.mod-root .view-header{
    margin-block:7px;
    background:none;
}
/* remove title fading element */
.view-header-title-container:not(.mod-at-end):after{
    display:none;
}
/* increase Main Note Headers icon size */
.workspace-split.mod-vertical.mod-root .view-header svg{
    --icon-size:var(--icon-l);
}
/* increase Main Note Headers breadcrumb button size */
.view-header-title-parent .view-header-breadcrumb{
    padding:3px 7px;
}
 
 
/* Stacked Mode styling */
 
body .workspace-split.mod-vertical.mod-root .workspace-tabs.mod-stacked .workspace-tab-header-container>.workspace-tab-header-new-tab{
    order:1;
    margin-right:var(--size-4-1);
}
body .workspace-split.mod-vertical.mod-root .workspace-tabs.mod-stacked .workspace-tab-header-container>.workspace-tab-header-tab-list{
    order:2;
}
body .workspace-split.mod-vertical.mod-root .workspace-tabs.mod-stacked .workspace-tab-header-container>.sidebar-toggle-button.mod-right{
    order:3;
}
 
 
/* overflow for visible shadow, though not working nicely */
.workspace .mod-root .workspace-tabs.mod-stacked .workspace-tab-container{
    /* overflow: visible; */
}
.workspace-split.mod-vertical.mod-root .workspace-tabs.mod-stacked .workspace-tab-header{
    margin:0;
    padding-top:7px;
    border-top-left-radius:var(--window-radius);
    /* border-bottom-left-radius:var(--window-radius); */
    box-shadow:none;
    border-top:1px solid var(--color-accent-1);
    border-left:1px solid var(--color-accent-1);
    border-right:none;
    border-bottom:none;
    /* box-shadow:var(--window-shadow-left); */
}
body.toggle-note-radius .workspace-split.mod-vertical.mod-root .workspace-tabs.mod-stacked .workspace-tab-header{
    border-bottom-left-radius:var(--window-radius);
}
.workspace-split.mod-vertical.mod-root .workspace-tabs.mod-stacked .workspace-tab-header+.workspace-leaf{
    border-top-left-radius:0;
    /* border-bottom-right-radius:var(--window-radius); */
    border-top:var(--border);
    border-image:linear-gradient(90deg, var(--color-accent-1) 0, var(--tab-outline-color) 60%, transparent 90%) 1;
    /* box-shadow:var(--window-shadow-right); */
    box-shadow:none;
    border-bottom-left-radius:0;
}
/* Disable transparency on main note during translucent mode due to unreadable issue */
body.is-translucent .workspace-split.mod-vertical.mod-root .workspace-tabs.mod-stacked :is(.workspace-leaf, .workspace-tab-header){
    transition:background 0.2s;
    background:var(--background-primary)!important;
}
body.is-translucent .workspace-split.mod-vertical.mod-root .workspace-tabs.mod-stacked :is(.workspace-tab-header.is-active+.workspace-leaf, .workspace-tab-header.is-active){
    background:var(--color-base-00)!important;
}
 
 
 
/* Border radius on Pane design, however, not adjusted for multiple panes */
body:not(.is-mobile) .workspace-split.mod-vertical.mod-root .workspace-leaf{
    border-radius:var(--window-radius);
    border-bottom-right-radius:0;
    border-bottom-left-radius:0;
    box-shadow:var(--window-shadow);
}
body:not(.is-mobile).toggle-note-radius .workspace-split.mod-vertical.mod-root{
    padding-bottom:23px;
}
body:not(.is-mobile).toggle-note-radius .workspace-split.mod-vertical.mod-root .workspace-leaf{
    border-radius:var(--window-radius);
}
 
 
/* Overflow to allow shadow flowing out */
body:not(.is-mobile) .workspace-tabs,
body:not(.is-mobile) .workspace-tabs .workspace-tab-container{
    overflow:visible;
}
 
/* Minimum padding to push down cut-off scrollbars when show-tab-title-bar is disabled */
body:not(.show-view-header) .workspace-split.mod-vertical.mod-root .workspace-leaf{
    padding-top:23px;
    background-color:var(--background-primary);
}
body.is-mobile .workspace-split.mod-vertical.mod-root .workspace-leaf{
    padding-top:0;
}
 
/* Adjust mobile header position */
body.is-phone .view-header, .show-view-header .view-header{
    align-items:center;
}
.is-mobile .view-actions{
    margin-right:-3px;
}
 
/* Gap inbetween panes */
.workspace-split.mod-vertical.mod-root,
.workspace-split.mod-vertical.mod-root .workspace-split:not(.mod-horizontal){
    gap:23px;
}
 
/* Main Note padding space, only in middle pane, not sidebars*/
.workspace-split.mod-vertical.mod-root .markdown-preview-view{
    padding-inline:53px;
}
.workspace-split.mod-vertical.mod-root .markdown-source-view .cm-content{
    padding-inline:13px;
}
 
 
 
 
 
/* Context menu styling */
.menu{
    padding:0;
}
.menu-item{
    padding:var(--button-padding-long);
}
body.is-translucent .menu{
    background:var(--color-base-00);
}
 
 
 
/* Hide status bar */
body:is(:not(.css-settings-manager),.toggle-status-bar) .status-bar{
    bottom:-50px;
}
/* Show Sync Button Only */
body.toggle-sync-button.toggle-status-bar .status-bar-item.plugin-sync{
    bottom:54px;
    right:5px;
    position:absolute;
    padding:var(--button-padding-icon);
}
body.toggle-sync-button.toggle-status-bar .status-bar-item.plugin-sync:hover{
    filter:brightness(0.8);
}
body.toggle-sync-button.toggle-status-bar .status-bar-item .svg-icon{
    --icon-size:var(--icon-l);
}
 
 
/* Adjust button spacing on search result items */
.search-result-hover-button{
    padding-block:0;
}
.search-result-hover-button.mod-top {
    top:0;
}
.search-result-hover-button.mod-bottom {
    bottom:0;
}
 
 
 
 
 
/* Setting Modal */
.vertical-tab-header{
    padding-inline:0;
}
.vertical-tab-header-group-title{
    color:var(--color-accent-2);
}
.vertical-tab-header-group{
    padding-inline:var(--size-4-3);
}
.vertical-tab-header-group:not(:last-child){
    border-bottom:var(--border);
    margin-bottom:23px;
}
body.is-translucent .modal{
    background:var(--color-base-00);
}
 
 
 
 
 
 
 
/*
--------------------------- --------------------------- 
--------------------------- --------------------------- 
    Animation
--------------------------- --------------------------- 
--------------------------- --------------------------- 
*/
 
 
.modal{
    border-radius:var(--window-radius);
    animation:0.2s popup forwards;
}
@keyframes popup{
    0% { transform:scale(70%); opacity:0; }
    15% { transform:scale(80%); opacity:0.1; }
    35% { transform:scale(102%);  }
    45% { opacity:0.3; }
    65% { opacity:0.7; }
    100% { transform:scale(100%); opacity:1; }
}
 
body:is(:not(.css-settings-manager), .toggle-note-animation) .workspace-split.mod-vertical.mod-root .workspace-tabs:not(.mod-stacked) .workspace-leaf-content:not([data-type="pdf"]) .view-content{
    animation:0.2s slide-up forwards;
}
@keyframes slide-up{
    0% { transform:translateY(0%); opacity:0; }
    15% { transform:translateY(5px); opacity:0; }
    25% { transform:translateY(10px); }
    45% { opacity:0.5; }
    65% { opacity:0.7; }
    100% { transform:translateY(0%); opacity:1; }
}
 
:is(.nav-folder, .nav-file) :is(.nav-folder-title, .nav-file-title).is-active svg{
    animation:0.3s bounceback;
}
@keyframes bounceback{
    0% { transform:translateY(0%); }
    60% { transform:translateY(10%); }
    100% { transform:translateY(0%); }
}
 
 
 
 
 
/*
--------------------------- --------------------------- 
--------------------------- --------------------------- 
    Icon Button Style
--------------------------- --------------------------- 
--------------------------- --------------------------- 
*/
 
/* tab close button */
.workspace .mod-root .workspace-tab-header .workspace-tab-header-inner-close-button{
    padding:var(--button-padding-icon);
    right:unset;
    margin-right:-4px;
}
/* remove margin during stacked mode */
.workspace .mod-root .workspace-tabs.mod-stacked .workspace-tab-header-inner-close-button{
    margin-right:0;
}
 
/* easier hover adaption color */
:is(.workspace-tab-header-status-icon, .workspace-tab-header-inner-close-button, .clickable-icon):hover{
    background-color:var(--background-modifier-hover);
    filter:brightness(0.8);
}
 
:is(*, .workspace-tab-header-tab-list, .workspace-tab-header-new-tab) .clickable-icon, /*all clickable icon button */
.workspace .mod-root .workspace-tabs.mod-stacked .workspace-tab-container .workspace-tab-header-inner-icon, /* icon in stacked tab mode*/
.workspace-tab-header-inner-icon{ /* Sidebar header icons, though the original padding overrides a bit */
    padding:var(--button-padding-icon);
}
 
/* Adjust icon size during stacked */
.workspace .mod-root .workspace-tabs.mod-stacked .workspace-tab-container .workspace-tab-header-inner-icon{
    --icon-size:var(--icon-s);
}
 
 /* Setting close button */
body:not(.native-scrollbars) .modal-close-button{
    right:7px;
    top:7px;
    height:32px;
    width:34px;
}
.modal-close-button:before{
    position:absolute;
    top:5px;
    left:9px;
}
 
 
/* undo original style to adapt consistency on header position */
.sidebar-toggle-button{
    height:unset;
    justify-content:unset;
    padding:unset;
    --icon-size:unset;
    --icon-stroke:unset;
    align-items:center;
    padding-block:4.5px;
}
.workspace-tab-header-new-tab,
.workspace-tab-header-tab-list{
    padding-block:4.5px;
}
 
 
 
 
 
/* background space to be hovered/clicked, a.k.a. "fake" empty space / pseudo-clickable area */
/* maintains the position of hovered whitespace design while still being able to click a little outside of the proposed size. */
:is(.workspace-tab-header-status-icon, .clickable-icon):before{
    position:absolute;
    content:"";
    height:var(--ribbon-width);
    width:var(--ribbon-width);
}
/* fix the above design since v16/17 */
.clickable-icon:before{
    height:41px;
    width:41px;
}
 
 
/* extend setting clickable area to the bottom */
.side-dock-settings .clickable-icon.side-dock-ribbon-action:last-child:before{
    height:calc(var(--ribbon-width) + 8px);
    margin-bottom:-5px;
}
 
/* remove side padding and add pseudo space on header-parent, then remove parent's is-active background and re-enable child's background */
.workspace-split.mod-horizontal:is(.mod-left-split,.mod-right-split) .workspace-tab-header-inner{
    padding:0;
}
.workspace-split.mod-horizontal:is(.mod-left-split,.mod-right-split) .workspace-tab-header{
    padding:5px 3px;
}
.workspace-split.mod-horizontal:is(.mod-left-split,.mod-right-split) .workspace-tab-header:first-child{
    padding-left:5px;
}
.workspace-split.mod-horizontal:is(.mod-left-split,.mod-right-split) .workspace-tab-header:last-child,
.workspace-split.mod-horizontal:is(.mod-left-split,.mod-right-split) .sidebar-toggle-button.mod-left,
.workspace-split.mod-horizontal:is(.mod-left-split,.mod-right-split) .sidebar-toggle-button.mod-right{
    padding-right:5px;
}
.workspace-split.mod-horizontal:is(.mod-left-split,.mod-right-split) .workspace-tab-header.is-active{
    background:transparent;
}
.workspace-split.mod-horizontal:is(.mod-left-split,.mod-right-split) .workspace-tab-header.is-active .workspace-tab-header-inner{
    background-color:var(--background-modifier-hover);
}
 
 
 
 
 
 
 
 
/*
--------------------------- --------------------------- 
--------------------------- --------------------------- 
    Long Button Style
--------------------------- --------------------------- 
--------------------------- --------------------------- 
*/
/* Append some spaces so that when on-focused, the border does not get cut */
.nav-files-container{
    padding-top:2px;
}
 
 
:is(.nav-folder, .nav-file) :is(.nav-folder-title, .nav-file-title),
.vertical-tab-nav-item,
.tree-item-self,
button{
    padding:var(--button-padding-long);
    transition:0.05s ease-in;
    transition-property:background, color;
    position:relative;
}
 
/* Left-border style on long button, just for file-explorer */
.nav-file-title:before{
    content:"";
    position:absolute;
    left:0;
    top:50%;
    width:3px;
    height:0;
    border-radius:var(--button-radius);
    background:var(--color-accent);
    transform:translateY(0%);
    transition:0.25s cubic-bezier(1,0.33,0.76,1.22);
    transition-property:height, transform;
}
.nav-file-title.is-active::before{
    height:70%;
    transform:translateY(-50%);
}
 
/* Folder styling, just for file-explorer */
.nav-folder-title{
    color:var(--color-accent-2);
    font-size:0.95em;
    font-weight:500;
}
body:is(:not(.css-settings-manager),.toggle-explorer-collapse) .nav-folder-title .collapse-icon{
    display:none;
}
body:not(.is-grabbing) .tree-item-self.is-clickable.nav-folder-title:hover{
    color:var(--color-accent-2);
    font-weight:500;
}
/* Additional padding inside folder, also remove border-left as indentation-guide */
.nav-folder > .nav-folder-children{
    padding-block:7px;
    padding-left:13px;
    margin-left:20px;
}
body:is(:not(.css-settings-manager),.toggle-explorer-indent) .nav-folder > .nav-folder-children{
    border-inline-start:none;
    padding-left:33px;
    margin-left:0;
}
 
:is(.nav-folder-title, .nav-file-title):hover{
    filter:brightness(0.9);
}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/*
--------------------------- --------------------------- 
--------------------------- --------------------------- 
    Markdown Stying
--------------------------- --------------------------- 
--------------------------- --------------------------- 
*/
 
 
a, .external-link{
    text-decoration:none;
}
a, .external-link:hover{
    text-decoration:underline;
}
.cm-hashtag{
    vertical-align:unset;
}
 
code{
    --code-normal:var(--blockquote-color);
    margin-inline:3px;
}
 
/* Inline code */
.markdown-rendered :not(pre)>code,
.cm-s-obsidian span.cm-inline-code{
    color:var(--inline-code-color);
}
/* inline code background */
.cm-hmd-indented-code,
.cm-s-obsidian span.cm-inline-code.cm-hmd-indented-code{
    background:var(--code-background);
}
 
.markdown-rendered pre{
    overflow-x: auto;
}
 
 
:is(mark, .cm-s-obsidian span.cm-formatting-highlight, .cm-s-obsidian span.cm-highlight, .search-result-file-matched-text){
    color:var(--color-highlight);
}
body.theme-dark:not(.css-settings-manager) :is(mark, .cm-s-obsidian span.cm-formatting-highlight, .cm-s-obsidian span.cm-highlight, .search-result-file-matched-text),
body.THT-underline :is(mark, .cm-s-obsidian span.cm-formatting-highlight, .cm-s-obsidian span.cm-highlight, .search-result-file-matched-text),
body.THT-underline-dark.theme-dark :is(mark, .cm-s-obsidian span.cm-formatting-highlight, .cm-s-obsidian span.cm-highlight, .search-result-file-matched-text),
body.THT-underline-light.theme-light :is(mark, .cm-s-obsidian span.cm-formatting-highlight, .cm-s-obsidian span.cm-highlight, .search-result-file-matched-text){
    border-bottom:2px solid var(--text-highlight-bg);
    color:var(--color-highlight);
    background:none;
}
 
sup,sub{
    font-size:0.85em;
}
.footnote-ref{
    vertical-align:super;
}
 
img{
    max-width:100%;
    border-radius:var(--panel-radius);
}
 
/* Markdown Headings */
body:is(:not(.css-settings-manager),.toggle-h1-margin-top) :is(h1, .markdown-rendered h1){
    margin-top:73px;
}
:is(h1,h2,h3,h4,h5,h6), .markdown-rendered :is(h1,h2,h3,h4,h5,h6){
    margin-top:33px;
}
.markdown-embed .markdown-preview-pusher+div>h1,
.markdown-preview-section div.is-collapsed+div>h1{
    margin-top:33px;
}
 
 
/* Markdown Checkbox */
 
/* Give some space on top of parent div */
.markdown-source-view.mod-cm6 .HyperMD-task-line{
    padding-top:3px;
}
 
/* Adjust checkbox position and styling */
.markdown-source-view.mod-cm6 .task-list-item-checkbox{
    padding:11px;
    top:-2px;
    left:-6px;
}
.markdown-preview-view .task-list-item-checkbox{
    padding:11px;
    top:5px;
}
input[type=checkbox]:checked:after{
    -webkit-mask-size:73%;
    -webkit-mask-position:73% 60%;
    width:100%;
    height:100%;
}
.contains-task-list.has-list-bullet li{
    margin-block:1px;
}
/* Adjust line position to fit below checkbox */
.markdown-rendered.show-indentation-guide li.task-list-item > :is(ul,ol)::before{
    left:-10px;
}
/* Collapse indicator position adjustment on lists & tasks */
.markdown-source-view.mod-cm6.is-live-preview .cm-line.HyperMD-list-line.HyperMD-task-line .cm-fold-indicator .collapse-indicator{
    padding-inline-end:5px;
}
.markdown-rendered .task-list-item .list-collapse-indicator{
    margin-top:5px;
    margin-left:-47px;
}
 
 
 
/* Markdown Listings */
ul, ol{
    padding:7px 0 13px;
}
 
/* Only append indent if it's from a list */
.cm-hmd-list-indent .cm-indent{ 
    padding-inline:0px 11px;
}
/* Build spaces at the end of each listing to distinguish from each other (source) */
.HyperMD-list-line-1+.HyperMD-list-line:not(.HyperMD-list-line-1):not(.HyperMD-list-line-2),
.HyperMD-list-line-2+.HyperMD-list-line:not(.HyperMD-list-line-2):not(.HyperMD-list-line-3),
.HyperMD-list-line-3+.HyperMD-list-line:not(.HyperMD-list-line-3):not(.HyperMD-list-line-4),
.HyperMD-list-line-4+.HyperMD-list-line:not(.HyperMD-list-line-4):not(.HyperMD-list-line-5),
.HyperMD-list-line-5+.HyperMD-list-line:not(.HyperMD-list-line-5):not(.HyperMD-list-line-6),
.HyperMD-list-line-6+.HyperMD-list-line:not(.HyperMD-list-line-6):not(.HyperMD-list-line-7){
    padding-top:11px!important;
}
 
 
ol > li::marker,
ul > li::marker,
.cm-s-obsidian .cm-formatting-list{
    margin-right:3px;
}
 
/* indent size adjustment */
.cm-hmd-list-indent .cm-indent{
    padding-inline:0;
}
.markdown-preview-sizer>div>:is(ul, ol){
    padding-inline:7px;
}
 
/* reduce padding of ul/ol inside callout/blockquote */
.callout-content>:is(ul,ol){
    padding-block:0;
}
blockquote>:is(ul,ol){
    padding-block:7px;
}
 
/* force break word for links */
.markdown-preview-sizer>div ul li a:not(.tag), div.callout ul li a:not(.tag){
    word-break:break-all;
}
 
 
 
/* Markdown Table */
/* Adds margin for easier identification */
table{
    margin:11px 7px;
}
 
/* Adds color to the header */
thead {
    border-top:2px solid var(--color-accent);
}
 
/* Adds padding spaces to the border */
.markdown-rendered :is(td, th){
    padding:4px 13px;
}
 
 
 
/* Markdown Strikethrough */
/* adjust color for strikethrough + on embed */
ul > li.task-list-item.is-checked{
    text-decoration-color:var(--color-strikethrough);
}
del, .cm-strikethrough,
ul > li.task-list-item.is-checked *,
.markdown-source-view.mod-cm6 .HyperMD-task-line[data-task]:not([data-task=" "]) span {
    color:var(--color-strikethrough);
}
 
/* Markdown Embed */
/* adjust embed padding, visual border */
.markdown-embed{
    border:var(--border);
    border-radius:var(--button-radius);
    padding:var(--embed-padding);
}
/* revert "p" margin-top back from 0 */
.markdown-embed-content p:first-child{
    margin-top:1em;
}
 
 
 
 
 
/* Markdown Quote */
.markdown-preview-view blockquote{
    margin:13px 0px;
    padding:17px 27px 17px 37px;
    border-radius:var(--button-radius);
    background:var(--background-secondary);
    border:var(--border);
    color:var(--blockquote-color);
    position:relative;
}
.markdown-preview-view blockquote:before{
    content:"";
    position:absolute;
    left:5px;
    top:7px;
    width:3px;
    height:calc(100% - 14px);
    background:var(--color-accent-1);
    border-radius:var(--button-radius);
}
.markdown-source-view.mod-cm6 .HyperMD-quote.cm-line{
    padding-right:17px;
    padding-block:3px;
}
.markdown-source-view.mod-cm6 .HyperMD-quote.cm-line+.HyperMD-quote.cm-line{
    padding-top:0;
}
 
 
 
 
/* Markdown Callout */
 
.callout{
    border:1px solid rgba(var(--callout-color), 0.3);
    background-color: rgba(var(--callout-color), 0.07);
}
.callout-title{
    gap:var(--size-4-3);
    align-items:center;
    background-color:rgba(var(--callout-color), 0.07);
    border-bottom:1px solid transparent;
    transition:border 0.3s;
}
.callout-icon,
.callout-fold{
    margin:0;
    align-self:center;
}
 
/* only apply border if callout is not collapsed */
.callout:not(.is-collapsed)>.callout-title:has(+.callout-content){
    border-bottom:1px solid rgba(var(--callout-color), 0.3);
}
 
.markdown-source-view.mod-cm6 .callout .callout{
    margin:1em 0;
}
 
 
 
 
 
 
 
 
/* canvas text blurry fix */
.is-focused .canvas-node-content.markdown-embed > .markdown-embed-content > .markdown-preview-view {
    transform: unset;
}
.canvas-node-content.markdown-embed{
    border-radius:0;
}
 
 
 
 
 
 
 
 
 
 
 
/*
--------------------------- --------------------------- 
--------------------------- --------------------------- 
    Mado Theme Special Classes
--------------------------- --------------------------- 
--------------------------- --------------------------- 
*/
/* Mado Heading */
 
.mado-heading .markdown-preview-section>div>*{
    position:relative;
    padding:13px 53px;
    margin:0;
    border:var(--border);
    border-radius:var(--button-radius);
    transition:background 0.1s;
}
.mado-heading .markdown-preview-section>div.mod-header>*{
    padding:23px 23px 0;
    border:none;
}
.mado-heading .markdown-preview-section>div:not(.is-collapsed)>h1{
    border-bottom-left-radius:0;
    border-bottom-right-radius:0;
    border-bottom:none;
}
.mado-heading .markdown-preview-section>div:not(.is-collapsed)>h1:before{
    border-radius:4px 0 0 0;
}
.mado-heading .markdown-preview-section>div:has(+div>*:not(h1))>*:not(h1){
    border-radius:0;
    border-bottom:none;
}
.mado-heading .markdown-preview-section>div:has(+div>h1)>*:not(h1),
.mado-heading .markdown-preview-section>div:has(+div.mod-footer)>*:not(h1){
    border-radius:0;
    border-bottom-left-radius:var(--button-radius);
    border-bottom-right-radius:var(--button-radius);
    border-bottom:var(--border);
}
.mado-heading :is(h1,h2,h3,h4,h5,h6){
    background:var(--background-fourth);
}
.mado-heading :is(h1,h2,h3,h4,h5,h6):hover{
    background:var(--background-fifth);
}
.mado-heading{
    --h1-size: 1.6em;
    --h2-size: 1.5em;
    --h3-size: 1.37em;
    --h4-size: 1.25em;
    --h5-size: 1.12em;
    --h6-size: 1.12em;
}
 
.mado-heading .markdown-preview-section>div:has(+div>p)>p{
    padding-bottom:0;
}
.mado-heading .markdown-preview-section>div:has(>p)+div>p{
    border-top:none;
}
 
 
.mado-heading .markdown-preview-section h1{
    padding-block:19px;
    margin-top:73px;
}
.mado-heading .markdown-preview-section h2{
    padding-block:17px;
}
.mado-heading .markdown-preview-section h3{
    padding-block:15px;
}
.mado-heading .markdown-preview-section h4{
    padding-block:13px;
}
 
/* left border to indicate collapsible action */
.mado-heading :is(h1,h2,h3,h4,h5,h6):before{
    content:"";
    position:absolute;
    left:5px;
    top:5px;
    height:calc(100% - 10px);
    border-radius:var(--button-radius);
    border-left:3px solid var(--color-accent-1);
}
.mado-heading h1:before{
    left:0;
    top:0;
    height:100%;
    border-radius:4px 0 0 4px;
    border-left:3px solid var(--color-accent-2);
}
.mado-heading h3:before{
    top:7px;
    height:calc(100% - 14px);
}
.mado-heading h4:before{
    top:9px;
    height:calc(100% - 18px);
}
.mado-heading h5:before{
    top:11px;
    height:calc(100% - 22px);
}
.mado-heading h6:before{
    top:13px;
    height:calc(100% - 26px);
}
 
/* expand clickable collapsible size to match parent size */
.mado-heading .heading-collapse-indicator{
    margin-left:0;
    width:100%;
    height:100%;
    padding:9px 33px;
    top:0;
    left:0;
    position:absolute;
    opacity:1;
}
.mado-heading .heading-collapse-indicator svg{
    right:27px;
    width:14px;
    height:14px;
    position:absolute;
}
 
 
 
.mado-heading .markdown-preview-section>div>p{
    padding-block:23px;
    background:var(--background-fourth);
}
.mado-heading .markdown-preview-section>div>:is(ul, ol){
    padding-block:23px;
    background:var(--background-fourth);
}
.mado-heading .markdown-preview-section>div>hr{
    display:none;
}
.mado-heading .markdown-preview-section>div>pre{
    padding-block:23px;
}
.mado-heading .markdown-preview-section>div>blockquote{
    padding-block:23px;
}
.mado-heading .markdown-preview-section>div>.callout{
    padding:var(--callout-padding);
    border:1px solid rgba(var(--callout-color), 0.3);
}
.mado-heading .markdown-preview-section>div>.callout .callout-title{
    padding:17px 23px;
}
.mado-heading .markdown-preview-section>div>.callout .callout-content{
    padding:3px 53px;
}
.mado-heading .markdown-preview-section>div>blockquote>:is(ul,ol){
    padding:0;
}
.mado-heading .markdown-preview-section>div>table{
    width:calc(100% + 0px);
    border-radius:var(--button-radius);
    border-collapse:separate;
    padding:0;
    background:var(--background-secondary);
}
.mado-heading .markdown-preview-section>div>table :is(th, td){
    padding:9px 11px;
    text-align:center;
    width:83px;
}
.mado-heading .markdown-preview-section>div>table th{
    background-color:var(--background-secondary);
    font-weight:600;
    font-size:1em;
}
.mado-heading .markdown-preview-section>div>table td{
    background:var(--background-fourth);
    border:none;
}
.mado-heading .markdown-preview-section>div>table thead>tr>*:first-child{
    border-radius:4px 0 0 0;
}
.mado-heading .markdown-preview-section>div>table thead>tr>*:last-child{
    border-radius:0 4px 0 0;
}
.mado-heading .markdown-preview-section>div>table tbody>tr:last-child>*:first-child{
    border-radius:0 0 0 4px;
}
.mado-heading .markdown-preview-section>div>table tbody>tr:last-child>*:last-child{
    border-radius:0 0 4px 0;
}
 
 
 
 
 
/* Mado Table */
[class*="mado-table"]:not(.mado-table-normal) .markdown-preview-section table{
    width:calc(100% - 0px);
    margin-inline:auto;
    border-radius:var(--button-radius);
    border-collapse:separate;
    border:var(--border);
    padding:2px;
    background:var(--background-secondary);
}
[class*="mado-table"]:not(.mado-table-normal) .markdown-preview-section table :is(th, td){
    padding:11px 11px;
    text-align:center;
    min-width:83px;
}
[class*="mado-table"]:not(.mado-table-normal) .markdown-preview-section table th{
    background-color:var(--background-secondary);
    font-weight:600;
    font-size:1em;
}
[class*="mado-table"]:not(.mado-table-normal).markdown-rendered .markdown-preview-section table td,
[class*="mado-table"]:not(.mado-table-normal).mado-table-topless .markdown-preview-section table th{
    background:var(--background-fourth);
    border:none;
    font-weight:400;
}
[class*="mado-table"]:not(.mado-table-normal) .markdown-preview-section table thead>tr>*:first-child{
    border-radius:4px 0 0 0;
}
[class*="mado-table"]:not(.mado-table-normal) .markdown-preview-section table thead>tr>*:last-child{
    border-radius:0 4px 0 0;
}
[class*="mado-table"]:not(.mado-table-normal) .markdown-preview-section table tbody>tr:last-child>*:first-child{
    border-radius:0 0 0 4px;
}
[class*="mado-table"]:not(.mado-table-normal) .markdown-preview-section table tbody>tr:last-child>*:last-child{
    border-radius:0 0 4px 0;
}
 
 
 
 
/* Mado Table Options */
[class*="mado-table"]:not(.mado-table-normal).mado-table-left .markdown-preview-section table tr :is(th:first-child, td:first-child),
[class*="mado-table"]:not(.mado-table-normal).mado-table-right .markdown-preview-section table tr :is(th:last-child, td:last-child),
[class*="mado-table"]:not(.mado-table-normal).mado-table-top.markdown-rendered .markdown-preview-section table tr th,
[class*="mado-table"]:not(.mado-table-normal).mado-table-bottom .markdown-preview-section table tr:last-child td{
    background-color:var(--background-secondary);
    font-weight:600;
    font-size:1em;
    border:var(--border);
}
.mado-table-normal.mado-table-left .markdown-preview-section table tr :is(th:first-child, td:first-child),
.mado-table-normal.mado-table-right .markdown-preview-section table tr :is(th:last-child, td:last-child),
.mado-table-normal.mado-table-top.markdown-rendered .markdown-preview-section table tr th,
.mado-table-normal.mado-table-bottom .markdown-preview-section table tr:last-child td{
    background-color:var(--background-secondary);
    font-weight:600;
    font-size:1em;
}
.mado-table-normal.mado-table-left .markdown-preview-section table tr :is(th:first-child, td:first-child){
    border-right:1px solid var(--color-accent-1);
}
.mado-table-normal.mado-table-right .markdown-preview-section table tr :is(th:last-child, td:last-child){
    border-left:1.5px solid var(--color-accent-1);
}
.mado-table-normal.mado-table-bottom .markdown-preview-section table tr:last-child td{
    border-top:2px solid var(--color-accent-1);
}
 
/* Mado Table Stripe/Border styling, also adapting colors for headers */
[class*="mado-table"]:not(.mado-table-normal).mado-table-stripe.markdown-rendered                         .markdown-preview-section table tr:nth-child(2n) td:not(:first-child):not(:last-child),
[class*="mado-table"]:not(.mado-table-normal).mado-table-stripe.markdown-rendered:not(.mado-table-left) .markdown-preview-section table tr:nth-child(2n) td:first-child,
[class*="mado-table"]:not(.mado-table-normal).mado-table-stripe.markdown-rendered.mado-table-left         .markdown-preview-section table tr:nth-child(2n+1) td:first-child,
[class*="mado-table"]:not(.mado-table-normal).mado-table-stripe.markdown-rendered:not(.mado-table-right) .markdown-preview-section table tr:nth-child(2n) td:last-child,
[class*="mado-table"]:not(.mado-table-normal).mado-table-stripe.markdown-rendered.mado-table-right         .markdown-preview-section table tr:nth-child(2n+1) td:last-child,
.mado-table-normal.mado-table-stripe.markdown-rendered     .markdown-preview-section table tr:nth-child(2n+1) :is(td:first-child, td:last-child),
[class*="mado-table"]:not(.mado-table-normal).mado-table-border.markdown-rendered .markdown-preview-section table :is(tr th:nth-child(2n+2), tr td:nth-child(2n+1)),
[class*="mado-table"]:not(.mado-table-normal).mado-table-border.markdown-rendered.mado-table-bottom .markdown-preview-section table tr:last-child td:nth-child(2n){
    background-color:var(--background-primary);
}
.mado-table-normal.mado-table-stripe.markdown-rendered .markdown-preview-section table tr:nth-child(2n) td,
.mado-table-normal.mado-table-border.markdown-rendered .markdown-preview-section table :is(tr th:nth-child(2n+1), tr td:nth-child(2n+1)),
.mado-table-border.markdown-rendered.mado-table-bottom .markdown-preview-section table tr:last-child td:nth-child(2n+1),
[class*="mado-table"]:not(.mado-table-normal).mado-table-stripe.markdown-rendered.mado-table-bottom .markdown-preview-section table tr:last-child :is(td:first-child, td:last-child){
    background-color:var(--background-secondary);
}
 
 
 
 
 
 
/* Mado Table Auto-Expand */
 
/* Remove master-parent width limit */
.mado-table-auto.is-readable-line-width>div.markdown-preview-sizer.markdown-preview-section,
.mado-table-auto.markdown-source-view.mod-cm6.is-readable-line-width :is(.cm-sizer, .cm-content){
    max-width:100%;
}
 
/* attach width limit to all other normal divs except table */
.mado-table-auto.is-readable-line-width>div.markdown-preview-sizer.markdown-preview-section>div>*,
.mado-table-auto.markdown-source-view.mod-cm6.is-readable-line-width .cm-editor .cm-contentContainer .cm-content div:not(.cm-table-widget){
    max-width:var(--file-line-width);
    margin-inline:auto!important;
}
.mado-table-auto.is-readable-line-width>div.markdown-preview-sizer.markdown-preview-section>div>table,
.mado-table-auto.markdown-source-view.mod-cm6.is-readable-line-width .cm-editor .cm-contentContainer .cm-content table{
    max-width:100%;
    width:auto;
    margin-inline:auto!important;
}
 
 
/* Mado Table Check */
 
.mado-table-check td:has(del){
    position:relative;
    /* display:flex; */
    align-items:center;
    justify-content:center;
    z-index:0;
}
.mado-table-check td:has(del):before{
    background:var(--background-primary);
    z-index:-1;
    position:absolute;
    left:0;
    top:0;
    content:"";
    width:100%;
    height:100%;
}
.mado-table-check td:has(del):after{
    position:absolute;
    left:50%;
    top:50%;
    content:"";
    width:50px;
    height:50px;
    transform:translate(-50%, -50%);
    opacity:0.3;
    background-color:MediumSeaGreen;
    -webkit-mask-size:83%;
    -webkit-mask-position:53%;
    -webkit-mask-repeat:no-repeat;
    -webkit-mask-image:url('data:image/svg+xml; utf8, <svg width="12px" height="10px" viewBox="0 0 12 8" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><g transform="translate(-4.000000, -6.000000)" fill="%23000000"><path d="M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999"></path></g></g></svg>');
}
 
 
 
 
 
 
 
 
/* Mado List2Table */
 
div.callout[data-callout="mado-list2table"]{
    background:none;
    border:none;
}
div.callout[data-callout="mado-list2table"] .callout-title,
div.callout[data-callout="mado-list2table"] .callout-content:before,
div.callout[data-callout="mado-list2table"] .callout-content>ul :is(.list-bullet,.collapse-indicator),
div.callout[data-callout="mado-list2table"] .callout-content>ul .contains-task-list:before{
    display:none;
}
div.callout[data-callout="mado-list2table"] .callout-content{
    padding:0;
}
div.callout[data-callout="mado-list2table"] .callout-content>ul{
    display:flex;
    flex-direction:column;
    min-width:max-content;
    height:auto;
    padding:0;
}
div.callout[data-callout="mado-list2table"] .callout-content>ul>li{
    display:flex;
    flex-direction:row;
    gap:7px;
    align-items:center;
}
div.callout[data-callout="mado-list2table"] .callout-content>ul>li>ul{
    display:flex;
    flex-direction:row;
    gap:3px;
    padding:0;
}
div.callout[data-callout="mado-list2table"] .callout-content>ul>li>ul>li{
    position:relative;
    height:53px;
    min-width:53px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:11px;
    overflow:hidden;
}
div.callout[data-callout="mado-list2table"] .callout-content>ul>li>ul>li>*{
    position:absolute;
    left:0;
    top:0;
}
div.callout[data-callout="mado-list2table"] .callout-content>ul>li>ul>li .task-list-item-checkbox{
    margin:0;
    padding:0;
    height:100%;
    width:100%;
}
div.callout[data-callout="mado-list2table"] .callout-content>ul>li>ul>li.is-checked{
    text-decoration:none;
    opacity:0.4;
}
div.callout[data-callout="mado-list2table"] .callout-content>ul>li>ul>li .task-list-item-checkbox:checked{
    background:none;
    z-index:10;
}
div.callout[data-callout="mado-list2table"] .callout-content>ul>li>ul>li .task-list-item-checkbox:checked:after{
    left:50%;
    top:50%;
    transform:translate(-50%, -50%);
    width:40px;
    height:40px;
    opacity:0.4;
    background-color:MediumSeaGreen;
    -webkit-mask-size:83%;
    -webkit-mask-position:53%;
    -webkit-mask-repeat:no-repeat;
    -webkit-mask-image:url('data:image/svg+xml; utf8, <svg width="12px" height="10px" viewBox="0 0 12 8" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><g transform="translate(-4.000000, -6.000000)" fill="%23000000"><path d="M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999"></path></g></g></svg>');
}
 
 
 
 
 
 
 
 
 
/* Mado Explorer */
 
/* Hide Inline Title */
.workspace-split:not(.mod-root) .workspace-tabs .markdown-preview-view.mado-explorer .inline-title{
    display:none;
}
 
/* Reset font size */
.workspace-split:is(.mod-right-split, .mod-left-split) :is(.markdown-preview-view, .markdown-source-view).mado-explorer{
    font-size:var(--font-text-size);
}
 
/* Adjust margin and padding from the note pane & the elements */
.workspace-split:not(.mod-root) .workspace-tabs .markdown-preview-view.mado-explorer,
.workspace-split:not(.mod-root) .workspace-tabs .markdown-preview-view.mado-explorer .markdown-preview-sizer.markdown-preview-section{
    margin:0!important;
    padding:0!important;
}
.workspace-split:not(.mod-root) .workspace-tabs .markdown-preview-view.mado-explorer{
    padding:var(--size-4-6) var(--size-4-3)!important;
}
.workspace-split:not(.mod-root) .workspace-tabs .markdown-preview-view.mado-explorer .markdown-preview-sizer p,
.workspace-split:not(.mod-root) .workspace-tabs .markdown-preview-view.mado-explorer .markdown-preview-sizer ul,
.workspace-split:not(.mod-root) .workspace-tabs .markdown-preview-view.mado-explorer .markdown-preview-sizer li{
    margin:0;
    padding:0;
}
.workspace-split:not(.mod-root) .workspace-tabs .markdown-preview-view.mado-explorer ul{
    padding-block:7px!important;
    padding-left:13px!important;
    margin-left:20px!important;
}
body.css-settings-manager:not(.toggle-explorer-indent) .workspace-split:not(.mod-root) .workspace-tabs .markdown-preview-view.mado-explorer ul{
    border-left:var(--nav-indentation-guide-width) solid var(--nav-indentation-guide-color);
}
 
/* Explorer Button design */
.workspace-split:not(.mod-root) .workspace-tabs .markdown-preview-view.mado-explorer a,
.workspace-split:not(.mod-root) .workspace-tabs .markdown-preview-view.mado-explorer li,
.workspace-split:not(.mod-root) .workspace-tabs .markdown-preview-view.mado-explorer h1{
    padding:var(--button-padding-long);
    transition:0.05s ease-in;
    transition-property:background, color;
    text-decoration:none;
    margin:0;
    position:relative;
    color:var(--nav-item-color);
    font-size:var(--nav-item-size);
    font-weight:var(--nav-item-weight);
    line-height:var(--line-height-tight);
    border-radius:var(--button-radius);
    cursor:var(--cursor);
    margin-bottom:var(--size-2-1);
    overflow:hidden;
    white-space:var(--nav-item-white-space);
    text-overflow:ellipsis;
    width:calc(100% - 0px);
    display:inline-block;
    vertical-align:middle;
}
 
/* expand collapse icon to full size of parent to be clickable */
.workspace-split:not(.mod-root) .workspace-tabs .markdown-preview-view.mado-explorer h1 .heading-collapse-indicator.collapse-indicator.collapse-icon{
    position:absolute;
    width:100%;
    height:100%;
    margin:0;
    padding:0;
    top:0;
    left:0;
    opacity:1;
}
 
body.css-settings-manager:not(.toggle-explorer-collapse) .workspace-split:not(.mod-root) .workspace-tabs .markdown-preview-view.mado-explorer h1{
    padding-left:33px;
}
body.css-settings-manager:not(.toggle-explorer-collapse) .workspace-split:not(.mod-root) .workspace-tabs .markdown-preview-view.mado-explorer .collapse-indicator svg{
    position:absolute;
    left:15px;
    top:16px;
}
 
/* hide frontmatter, collapse icon, heading without value and linebreak */
.workspace-split:not(.mod-root) .workspace-tabs .markdown-preview-view.mado-explorer .frontmatter,
body:is(:not(.css-settings-manager),.toggle-explorer-collapse) .workspace-tabs .markdown-preview-view.mado-explorer .collapse-indicator svg,
.workspace-split:not(.mod-root) .workspace-tabs .markdown-preview-view.mado-explorer .list-bullet,
.workspace-split:not(.mod-root) .workspace-tabs .markdown-preview-view.mado-explorer .markdown-preview-sizer h1[data-heading=""],
.workspace-split:not(.mod-root) .workspace-tabs .markdown-preview-view.mado-explorer .markdown-preview-sizer p br{
    display:none;
}
 
.workspace-split:not(.mod-root) .workspace-tabs .markdown-preview-view.mado-explorer a:hover,
.workspace-split:not(.mod-root) .workspace-tabs .markdown-preview-view.mado-explorer li:hover,
.workspace-split:not(.mod-root) .workspace-tabs .markdown-preview-view.mado-explorer h1:hover{
    background-color:var(--nav-item-background-hover);
    color:var(--nav-item-color-hover);
    font-weight:var(--nav-item-weight-hover);
}
.workspace-split:not(.mod-root) .workspace-tabs .markdown-preview-view.mado-explorer li>a:hover{
    background:none;
}
.workspace-split:not(.mod-root) .workspace-tabs .markdown-preview-view.mado-explorer h1,
.workspace-split:not(.mod-root) .workspace-tabs .markdown-preview-view.mado-explorer h1:hover{
    color:var(--color-accent-2);
    font-size:0.95em;
    font-weight:500;
}
 
 
 
/* Mado Daily */
.mado-daily table td{
    font-size:2rem;
    position:relative;
}
.mado-daily table td:not(:empty):not(:nth-child(3)):not(:nth-child(7)){
    background:var(--background-primary);
}
.mado-daily table thead{
    display:none;
}
/* show checkmark when previous days are filled(no longer empty), */
/* using "~" instead of "+" decrease the complexity, though it also decrease credibility(?) as checkmark will appear if the previous day is filled */
.mado-daily table td:first-child:not(:empty)~td:not(:empty)+td:nth-child(3),
.mado-daily table td:first-child:not(:empty)~td:not(:empty)+td:nth-child(7){
    background:var(--background-secondary);
    position:relative;
    overflow:hidden;
    z-index:10;
}
.mado-daily table td:nth-child(3):before,
.mado-daily table td:nth-child(7):before{
    position:absolute;
    left:50%;
    top:50%;
    content:"";
    width:100%;
    height:100%;
    transform:translate(-50%, -50%);
    z-index:-1;
    opacity:0.3;
    background-color:MediumSeaGreen;
    -webkit-mask-size:83%;
    -webkit-mask-position:53%;
    -webkit-mask-repeat:no-repeat;
    -webkit-mask-image:url('data:image/svg+xml; utf8, <svg width="12px" height="10px" viewBox="0 0 12 8" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><g transform="translate(-4.000000, -6.000000)" fill="%23000000"><path d="M8.1043257,14.0367999 L4.52468714,10.5420499 C4.32525014,10.3497722 4.32525014,10.0368095 4.52468714,9.8424863 L5.24777413,9.1439454 C5.44721114,8.95166768 5.77142411,8.95166768 5.97086112,9.1439454 L8.46638057,11.5903727 L14.0291389,6.1442083 C14.2285759,5.95193057 14.5527889,5.95193057 14.7522259,6.1442083 L15.4753129,6.84377194 C15.6747499,7.03604967 15.6747499,7.35003511 15.4753129,7.54129009 L8.82741268,14.0367999 C8.62797568,14.2290777 8.3037627,14.2290777 8.1043257,14.0367999"></path></g></g></svg>');
}
 
 
 
 
 
 
 
 
/* Mado Timeline */
 
.mado-timeline .markdown-preview-sizer>div{
    text-align:center;
    display:flex;
    align-items:center;
    justify-content:center;
}
.mado-timeline .markdown-preview-sizer>div>ul{
    text-align:center;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    margin-bottom:0;
    padding-bottom:13px;
}
.mado-timeline .markdown-preview-sizer>div>:is(blockquote,.callout, pre, table){
    margin-top:23px;
}
.mado-timeline .markdown-preview-sizer>div>hr{
    width:70%;
    margin-top:53px;
}
 
.mado-timeline .markdown-preview-sizer>div>:is(pre,table){
    text-align:left;
}
 
.mado-timeline .markdown-preview-sizer>div>.callout .callout-title{
    justify-content:center;
}
.mado-timeline .markdown-preview-sizer>div>.callout .callout-title .callout-fold{
    padding-right:0;
}
.mado-timeline .markdown-preview-sizer>div>.callout .callout-content{
    padding:7px 0;
}
.mado-timeline .markdown-preview-sizer>div>.callout .callout-content:before{
    display:none;
}
 
.mado-timeline .markdown-preview-sizer>div>h1{\
    margin-block:100px 11px;
    color:var(--color-accent);
    font-size:36px;
}
.mado-timeline .markdown-preview-sizer>div>h2{
    font-size:1.7rem;
    position:relative;
    padding-top:13px;
    margin-block:33px var(--p-spacing);
}
.mado-timeline .markdown-preview-sizer>div:has(>h2)+div>*:not(h2){
    margin-top:-13px;
}
.mado-timeline .markdown-preview-sizer>div>h2:before{
    content:"";
    width:2px;
    border-radius:100%;
    background:var(--text-faint);
    position:absolute;
    height: 40px;
    top: -35px;
    left: 50%;
    opacity:0.5;
}
.mado-timeline .markdown-preview-sizer>div.is-collapsed>h2{
    margin-bottom:13px;
}
 
 
 
 
 
 
 
 
 
/* Mado Panel */
 
/* Mado Panel Flexible(default)  &  Mado Panel Callout */
 
div.callout[data-callout*="mado-panel"]{
    background-color:initial;
    mix-blend-mode:normal;
    padding:0;
    border:none;
}
div.callout[data-callout*="mado-panel"] .callout-content{
    padding:0;
    overflow-x:initial;
}
 
/* hide original callout design */
div.callout[data-callout*="mado-panel"] :is(.callout-title, .list-bullet),
div.callout[data-callout*="mado-panel"] .callout-content:before{
    display:none;
}
 
 
[class*="mado-panel"] .markdown-preview-sizer>div ul.has-list-bullet:before,
div.callout[data-callout*="mado-panel"] ul.has-list-bullet:before{
    display:none;
}
 
[class*="mado-panel"] .markdown-preview-sizer>div ul,
div.callout[data-callout*="mado-panel"] ul{
    display:flex;
    flex-wrap:wrap;
    width:100%;
    gap:13px;
    transition:height 0.2s, opacity 0.2s;
    padding-inline:23px;
    padding-block:7px;
}
 
[class*="mado-panel"] .markdown-preview-sizer>div ul li,
div.callout[data-callout*="mado-panel"] ul li{
    display:flex;
    align-items:center;
    justify-content:center;    
    padding-block:13px;
    padding-inline:23px;
    background:var(--background-fourth);
    border:var(--border);
    border-radius:var(--panel-radius);
    box-shadow:var(--panel-shadow);
    transition:0.1s background, 0.1s box-shadow, transform 0.1s;
    text-align:center;
    width:auto;
    /* min-width:calc(100% / 4 - 10px); */
    flex:auto;
    min-height:70px;
    overflow:hidden;
}
 
[class*="mado-panel"] .markdown-preview-sizer>div ul li .list-bullet{
    display:none;
}
/* Hover-Child-Only doesn't actually look too comfortable, disabling it for the time being */
/* [class*="mado-panel"] .markdown-preview-sizer>div ul li:hover:not(:has(li:hover)), */
/* div.callout[data-callout*="mado-panel"] ul li:hover:not(:has(li:hover)){ */
[class*="mado-panel"] .markdown-preview-sizer>div ul li:hover,
div.callout[data-callout*="mado-panel"] ul li:hover{
    background:var(--background-fifth);
    /* background:var(--background-primary); */
    transform:translateY(-3px);
    box-shadow:var(--panel-shadow-hover);
}
 
[class*="mado-panel"] .markdown-preview-sizer>div ul a:not(:hover),
div.callout[data-callout*="mado-panel"] ul a:not(:hover){
    text-decoration:none;
}
/* adapt "a" link to whole panel so to be clickable */
[class*="mado-panel-link"] .markdown-preview-sizer>div ul a:not(.tag),
div.callout[data-callout*="mado-panel"][data-callout*="-link"] ul a:not(.tag){
    display:flex;
    align-items:center;
    justify-content:center;    
    height:calc(100% + 26px);
    width:calc(100% + 46px);
    padding-block:13px;
    padding-inline:23px;
    margin-block:-13px;
    margin-inline:-23px;
    text-decoration:none;
}
[class*="mado-panel"] .markdown-preview-sizer>div li.task-list-item,
div.callout[data-callout*="mado-panel"] ul li.task-list-item{
    position:relative;
}
[class*="mado-panel"] .markdown-preview-sizer>div li.task-list-item>input,
div.callout[data-callout*="mado-panel"] ul li.task-list-item>input{
    padding:11px;
    position:absolute;
    right:0;
    top:0;
    left:unset;
    margin:7px;
    border:var(--border);
    border-radius:var(--button-radius);
}
[class*="mado-panel"] .markdown-preview-sizer>div li.task-list-item.is-checked,
div.callout[data-callout*="mado-panel"] ul li.task-list-item.is-checked{
    background:var(--background-secondary);
}
[class*="mado-panel"] .contains-task-list.has-list-bullet li,
div.callout[data-callout*="mado-panel"] .contains-task-list.has-list-bullet li{
    margin-block:0;
}
 
 
 
 
/* Mado Panel List  &  Mado Panel Callout List*/
[class*="mado-panel-list"] .markdown-preview-sizer>div ul,
div.callout[data-callout*="mado-panel-list"] ul{
    gap:7px;
}
[class*="mado-panel-list"] .markdown-preview-sizer>div ul li,
div.callout[data-callout*="mado-panel-list"] ul li{
    display:inline-block;
    padding-block:8px;
    min-height:unset;
    text-align:left;
    width:100%;
    overflow:visible;
    margin-inline-start:0;
}
/* fix some panel-link margin issue */
[class*="mado-panel-list"] .markdown-preview-sizer>div ul li:has(>p){
    display: inline-block;
    vertical-align: super;
    height: calc(100% + 16px);
    width: calc(100% + 23px);
    padding-block: 8px;
    margin-block: -8px;
    text-align: left;
}
[class*="mado-panel-list"][class*="mado-panel-link"] .markdown-preview-sizer>div ul li a:not(.tag),
div.callout[data-callout*="mado-panel-list"][data-callout*="-link"] ul li a:not(.tag){
    height:calc(100% + 16px);
    width:calc(100% + 46px);
    padding-block:8px;
    margin-block:-8px;
    display:inline-block;
    text-align:left;
}
 
[class*="mado-panel-list"] .markdown-preview-sizer>div li.task-list-item,
div.callout[data-callout*="mado-panel-list"] ul li.task-list-item{
    padding-inline:43px 23px;
}
[class*="mado-panel-list"] .markdown-preview-sizer>div li.task-list-item>input,
div.callout[data-callout*="mado-panel-list"] ul li.task-list-item>input{
    padding:12px;
    left:0;
}
[class*="mado-panel-list"] .markdown-preview-sizer>div li:hover>.list-collapse-indicator,
div.callout[data-callout*="mado-panel-list"] ul li:hover>.list-collapse-indicator{
    opacity:1;
}
 
[class*="mado-panel-list-rightbox"] .markdown-preview-sizer>div li.task-list-item,
div.callout[data-callout*="mado-panel-list-rightbox"] ul li.task-list-item{
    padding-inline:23px;
}
[class*="mado-panel-list-rightbox"] .markdown-preview-sizer>div li.task-list-item>input,
div.callout[data-callout*="mado-panel-list"][data-callout*="-rightbox"] ul li.task-list-item>input{
    left:unset;
}
 
 
/* the very first list */
[class*="mado-panel-list"] .markdown-preview-sizer>div>ul>li>.list-collapse-indicator,
div.callout[data-callout*="mado-panel-list"] .callout-content>ul>li>.list-collapse-indicator{
    margin-left:-53px;
}
/* all normal list */
[class*="mado-panel-list"] .markdown-preview-sizer>div li>.list-collapse-indicator,
div.callout[data-callout*="mado-panel-list"] ul li>.list-collapse-indicator{
    margin-left:-40px;
}
/* all task lisk */
[class*="mado-panel-list"] .markdown-preview-sizer>div li.task-list-item>.list-collapse-indicator,
div.callout[data-callout*="mado-panel-list"] ul li.task-list-item>.list-collapse-indicator{
    margin-left:-73px;
    margin-top:0px;
}
/* rightbox task lisk */
[class*="mado-panel-list-rightbox"] .markdown-preview-sizer>div li.task-list-item>.list-collapse-indicator,
div.callout[data-callout*="mado-panel-list"][data-callout*="-rightbox"] ul li.task-list-item>.list-collapse-indicator{
    margin-left:-49px;
}
/* normal list inside a task list */
[class*="mado-panel-list"] .markdown-preview-sizer>div li.task-list-item li:not(.task-list-item)>.list-collapse-indicator,
div.callout[data-callout*="mado-panel-list"] ul li.task-list-item li:not(.task-list-item)>.list-collapse-indicator{
    margin-left:-53px;
}
/* task list inside a normal list */
[class*="mado-panel-list"] .markdown-preview-sizer>div li:not(.task-list-item)>ul>li.task-list-item>.list-collapse-indicator,
div.callout[data-callout*="mado-panel-list"] ul li:not(.task-list-item)>ul>li.task-list-item>.list-collapse-indicator{
    margin-left:-60px;
}
 
[class*="mado-panel-list"] .markdown-preview-sizer>div li :is(ul,ol),
div.callout[data-callout*="mado-panel-list"] ul li :is(ul,ol){
    padding-inline:0;
}
[class*="mado-panel-list"] .markdown-preview-sizer>div li.is-collapsed>:is(ul,ol),
[class*="mado-panel-list"] .markdown-preview-sizer>div li :is(ul,ol):before,
div.callout[data-callout*="mado-panel-list"] ul li.is-collapsed>:is(ul,ol),
div.callout[data-callout*="mado-panel-list"] ul li :is(ul,ol):before{
    display:none;
}
 
 
 
 
/* Mado Panel Sizing */
/* small = short & short */
/* medium = taller & longer */
/* large = tallest & longest */
/* short = short & longer */
/* long = short & longest */
[class*="mado-panel-small"] .markdown-preview-sizer>div ul li,
div.callout[data-callout*="mado-panel-small"]>.callout-content>ul>li{
    width:calc(100% / 4 - 10px);
    max-width:200px;
    height:70px;
}
[class*="mado-panel-medium"] .markdown-preview-sizer>div ul li,
div.callout[data-callout*="mado-panel-medium"]>.callout-content>ul>li{
    width:calc(100% / 3 - 9px);
    max-width:250px;
    height:110px;
}
[class*="mado-panel-large"] .markdown-preview-sizer>div ul li,
div.callout[data-callout*="mado-panel-large"]>.callout-content>ul>li{
    width:calc(100% / 2 - 7px);
    max-width:300px;
    height:130px;
}
[class*="mado-panel-short"] .markdown-preview-sizer>div ul li,
div.callout[data-callout*="mado-panel-short"]>.callout-content>ul>li{
    width:calc(100% / 3 - 9px);
    max-width:250px;
    height:70px;
}
[class*="mado-panel-long"] .markdown-preview-sizer>div ul li,
div.callout[data-callout*="mado-panel-long"]>.callout-content>ul>li{
    width:calc(100% / 2 - 7px);
    max-width:300px;
    height:70px;
}
[class*="mado-panel-auto"] .markdown-preview-sizer>div ul li,
div.callout[data-callout*="mado-panel"][data-callout*="-auto"]>.callout-content>ul>li{
    max-width:unset;
}
[class*="mado-panel-auto"][class*="mado-panel-small"] .markdown-preview-sizer>div ul li,
div.callout[data-callout*="mado-panel-small"][data-callout*="-auto"]>.callout-content>ul>li{
    min-width:calc(100% / 4 - 10px);
}
[class*="mado-panel-auto"][class*="mado-panel-medium"] .markdown-preview-sizer>div ul li,
div.callout[data-callout*="mado-panel-medium"][data-callout*="-auto"]>.callout-content>ul>li{
    min-width:calc(100% / 3 - 9px);
}
[class*="mado-panel-auto"][class*="mado-panel-large"] .markdown-preview-sizer>div ul li,
div.callout[data-callout*="mado-panel-large"][data-callout*="-auto"]>.callout-content>ul>li{
    min-width:calc(100% / 2 - 7px);
}
[class*="mado-panel-auto"][class*="mado-panel-short"] .markdown-preview-sizer>div ul li,
div.callout[data-callout*="mado-panel-short"][data-callout*="-auto"]>.callout-content>ul>li{
    min-width:calc(100% / 3 - 9px);
}
[class*="mado-panel-auto"][class*="mado-panel-long"] .markdown-preview-sizer>div ul li,
div.callout[data-callout*="mado-panel-long"][data-callout*="-auto"]>.callout-content>ul>li{
    min-width:calc(100% / 2 - 7px);
}
 
 
 
 
 
 
/* Mado Panel Callout Task Feature */
div.callout[data-callout*="mado-panel-task"]>.callout-content>ul>li{
    width:calc(100% / 2 - 7px);
    height:130px;
    display:none;
}
div.callout[data-callout*="mado-panel-task"]>.callout-content>ul>li:nth-child(1),
div.callout[data-callout*="mado-panel-task"]>.callout-content>ul>li:nth-child(2){
    display:flex;
}
/* When two main tasks above are completed, show the rest of the tasks */
div.callout[data-callout*="mado-panel-task"]>.callout-content>ul>li.is-checked:nth-child(1)+li.is-checked:nth-child(2)~li{
    width:calc(100% / 4 - 10px);
    height:70px;
    display:flex;
}
 
 
 
 
 
 
 
 
 
 
 
/*
--------------------------- --------------------------- 
--------------------------- --------------------------- 
    Plugin Supports
--------------------------- --------------------------- 
--------------------------- --------------------------- 
*/
 
 
 
/* Banner Plugin */
img.banner-image{
    border-radius:0;
}
 
 
 
 
/* Kanban Plugin */
.kanban-plugin{
    background:var(--background-primary);
}
.kanban-plugin .markdown-preview-view{
    padding-inline:3px;
}
 
.kanban-plugin__lane {
    background: var(--background-fourth);
    box-shadow: var(--window-shadow);
}
.kanban-plugin__lane-items>div {
    margin-top: 7px;
}
.kanban-plugin__lane-items.kanban-plugin__vertical.kanban-plugin__scroll-container{
    background: var(--background-primary);
    margin:0;
    padding:7px 11px;
}
.kanban-plugin__item-wrapper{
    box-shadow: var(--panel-shadow);
}
.kanban-plugin__item-title-wrapper {
    background: var(--background-fourth);
    padding: 11px 15px;
}
.kanban-plugin__item-metadata{
    padding-top:0;
}
/* .markdown-preview-view.kanban-plugin__markdown-preview-view.kanban-plugin__item-markdown>div>ul{ */
    /* border: var(--border); */
    /* padding: 23px 33px; */
    /* background: var(--background-secondary); */
    /* border-radius: var(--panel-radius); */
    /* margin-block: 7px; */
    /* box-shadow: var(--panel-shadow); */
/* } */
 
.kanban-plugin__item-markdown code{
    font-family: var(--font-monospace);
    background-color: var(--code-background);
    border-radius: var(--code-radius);
    font-size: var(--code-size);
    padding: 0.1em 0.25em;
}
.kanban-plugin__item-markdown :not(pre)>code{
    color:var(--inline-code-color);
}
.kanban-plugin__item-markdown pre{
    position: relative;
    padding: var(--size-4-3) var(--size-4-4);
    min-height: 38px;
    background-color: var(--code-background);
    border-radius: var(--code-radius);
    white-space: var(--code-white-space);
}
.kanban-plugin__item-markdown pre .copy-code-button{
    display:none;
}
 
/* icon and button styling */
.kanban-plugin__item :is(button.kanban-plugin__item-prefix-button, button.kanban-plugin__item-postfix-button),
.kanban-plugin__lane button.kanban-plugin__lane-settings-button{
    -webkit-app-region: no-drag;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--button-padding-icon);
    cursor: var(--cursor);
    border-radius: var(--clickable-icon-radius);
    color: var(--icon-color);
    opacity: var(--icon-opacity);
    transition: opacity 0.15s ease-in-out;
    height: auto;
    box-shadow:none;
}
.kanban-plugin__item :is(button.kanban-plugin__item-prefix-button, button.kanban-plugin__item-postfix-button):hover,
.kanban-plugin__lane button.kanban-plugin__lane-settings-button:hover{
    opacity: var(--icon-opacity-hover);
    color: var(--icon-color-hover);
    background-color: var(--background-modifier-hover);
}
div.kanban-plugin__lane-title-count{
    padding: var(--button-padding-icon);
    width:33px;
    height:27px;
    text-align:center;
}
 
.kanban-plugin__item-metadata-wrapper:not(:empty){
    background:var(--background-primary);
}
 
/* checkbox completed styling */
.kanban-plugin__item.is-complete :is(.markdown-preview-view>div *, .kanban-plugin__item-metadata-wrapper:not(:empty) *){
    text-decoration:line-through;
    text-decoration-color:var(--color-strikethrough);
    color:var(--color-strikethrough);
}
.kanban-plugin__item.is-complete img{
    opacity:0.3;
}
 
 
 
 
 
 
/* db folder & kanban fix */
.workspace-split.mod-vertical.mod-root :is([data-type="database-plugin"],.kanban-plugin) .markdown-preview-view{
    padding-inline:0;
}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* Style Setting Styling */
.style-settings-container{
    border:var(--border);
    border-radius:var(--panel-radius);
    padding:17px 27px;
}
 
/* Remove border-bottom, replace it with border-top */
.setting-item.setting-item-heading.style-settings-heading{
    border-bottom:none;
    border-top:1px solid var(--background-modifier-border);
}
/* Remove margin-bottom when collapsed*/
.setting-item.setting-item-heading.style-settings-heading:not(.is-collapsed){
    margin-bottom:0;
}
/* Remove border-top if header is first-child, and header if previous header is collapsed */
.setting-item.setting-item-heading.style-settings-heading:not(.is-collapsed)+.style-settings-container+.setting-item.setting-item-heading.style-settings-heading,
.setting-item.setting-item-heading.style-settings-heading:first-child{
    border-top:none;
}
.style-settings-container{
    padding-block:13px;
}
.style-settings-heading{
    padding-block:13px 0;
}
.style-settings-container{
    margin-block:13px;
    box-shadow:var(--panel-shadow);
}
.style-settings-heading .setting-item:last-child{
    padding-bottom:0;
}
.style-settings-heading .setting-item+.setting-item-heading{
    margin-top:0;
}
.style-settings-collapse-indicator{
    color:var(--text-normal);
}
.style-settings-heading+.style-settings-container+.style-settings-heading{
    margin-top:13px;
}
 
 
/* remove weird margin top */
.themed-color-wrapper>div,
.themed-color-wrapper>div+div{
    margin-top:0;
    padding:0 0 0 7px;
    border:var(--border);
    background:var(--color-base-00); /* For some reason it's not working originally */
}
 
 
.themed-color-wrapper{
    display:flex;
    align-items:center;
    flex-direction:row;
    gap:7px;
}
 
/* Button here has no .clickable-icon, so applying the originals into it */
.pickr-reset button{
    -webkit-app-region: no-drag;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--button-padding-icon);
    cursor: var(--cursor);
    border-radius: var(--clickable-icon-radius);
    color: var(--icon-color);
    opacity: var(--icon-opacity);
    transition: opacity 0.15s ease-in-out;
    height: auto;
    box-shadow:none;
    background:none;
}
.pickr-reset button:hover{
    opacity: var(--icon-opacity-hover);
    color: var(--icon-color-hover);
    background-color: var(--background-modifier-hover);
}
/* For some reason it's not working originally, so manually change the hover color */
.themed-color-wrapper>div.theme-light .pickr-reset button:hover{
    background-color:var(--color-base-shadow-hover);
}
.themed-color-wrapper>div.theme-dark .pickr-reset button:hover{
    background-color:var(--color-base-05);
}
 
/* turn into One row instead of multi rows */
.view-content .style-settings-container .setting-item:not(.setting-item-heading){
    flex-direction:row;
    align-items:center;
}
.view-content .style-settings-container .setting-item:not(.setting-item-heading) .setting-item-control{
    padding-top:0;
}
 
/* Custom intro section styling */
.setting-item.setting-item-heading.style-settings-heading[data-id="intro-section"]{
    cursor:default;
}
.setting-item.setting-item-heading.style-settings-heading[data-id="intro-section"]:not(.is-collapsed){
    padding-bottom:13px;
}
.setting-item.setting-item-heading.style-settings-heading[data-id="intro-section"]:not(.is-collapsed)+.style-settings-container+.style-settings-heading{
    margin-top:0;
}
.setting-item.setting-item-heading.style-settings-heading[data-id="intro-section"]+.style-settings-container{
    padding:0;
    border-bottom:0;
    margin-block:0;
}
.setting-item.setting-item-heading.style-settings-heading[data-id="intro-section"] :is(.style-settings-collapse-indicator, .setting-item-control){
    display:none
}
.setting-item.setting-item-heading.style-settings-heading[data-id="intro-section"] .setting-item-description{
    user-select:text;
    cursor:text;
    font-size:14px;
}
 
 
 
 
 
 
/* @settings
 
name: Mado Miniflow
id: mado-miniflow
settings:
    - 
        id: intro-section
        title: Introduction
        description: "The setting here covers only the very basic to avoid complexity fatigue. That being said, feel free to suggest anything by submitting a Github issue on: https://github.com/hydescarf/Obsidian-Theme-Mado-Miniflow"
        type: heading
        collapsed: true
        level: 3
        
        
        
        
    -
        id: theme-section
        title: Theme Section
        type: heading
        collapsed: true
        level: 3
    - 
        id: theme-color
        title: Theme Color
        type: class-select
        allowEmpty: false
        default: theme-violette
        options:
            -
                label: Daisy Blue
                value: theme-daisy-blue
            -
                label: Red Sky
                value: theme-red-sky
            -
                label: Violette
                value: theme-violette
            -
                label: Greenery
                value: theme-greenery
            -
                label: Yellowish
                value: theme-yellowish
            -
                label: Orange Jist
                value: theme-orange-jist
            -
                label: Deep Blue
                value: theme-deep-blue
            -
                label: Tea Teal
                value: theme-tea-teal
            -
                label: Magenta Pink
                value: theme-magenta-pink
            -
                label: Grayscale
                value: theme-grayscale
    - 
        id: accent
        title: Accent Color
        type: variable-themed-color
        opacity: false
        format: hsl-split
        default-light: '#'
        default-dark: '#'
    - 
        id: bgcolor
        title: Background Color
        description: "*Background color is not dynamically coded. You may see off-colors if you wish to change this setting."
        type: variable-themed-color
        opacity: false
        format: hsl-split
        default-light: '#'
        default-dark: '#'
    - 
        id: toggle-wave-background
        title: Hide Background Wave Design
        type: class-toggle
        default: false
    - 
        id: toggle-tab-design
        title: Enable Alternative Tab Design
        type: class-toggle
        default: false
    - 
        id: toggle-note-radius
        title: Enable All-Rounded Corner Note Pane
        type: class-toggle
        default: false
    - 
        id: toggle-note-animation
        title: Enable sliding animation on main pane
        description: Animation is noticable when you switch to a new tab
        type: class-toggle
        default: true
    - 
    
    
    
        id: layout-section
        title: Layout Section
        type: heading
        collapsed: true
        level: 3
    - 
    
    
        id: toggle-tab-height
        title: Enable Compact Tab Header
        type: class-toggle
        default: false
    - 
        id: toggle-tab-height-stacked
        title: Enable Compact Tab Header (Stacked)
        description: If you noticed a broken gap after the toggle, just refresh it by clicking on the panes (so that they can readjust themselves).
        type: class-toggle
        default: false
    - 
        id: toggle-scrollbar-overlay
        title: Enable Overlay Scrollbar
        type: class-toggle
        description: Overlay will provide you wider field of contents, but in return, scrollbar will have to overlap onto it.
        default: true
    - 
    
    
        id: hiding-section
        title: Hiding Elements
        type: heading
        description: Hide/Unhide the surrounding elements. Most can be hovered to reveal them.
        level: 4
        collapsed: true
    - 
        id: toggle-titlebar-buttons
        title: Hide Window Titlebar Buttons
        type: class-toggle
        default: true
    - 
        id: toggle-side-ribbons
        title: Hide Sidedock Ribbons
        type: class-toggle
        default: true
    - 
        id: toggle-sidebar-toggle-left
        title: Hide Sidebar Toggle Button (Left)
        type: class-toggle
        default: true
    - 
        id: toggle-sidebar-toggle-right
        title: Hide Sidebar Toggle Button (Right)
        type: class-toggle
        default: true
    - 
        id: toggle-sidebar-buttons
        title: Hide Sidebar Tab Buttons
        type: class-toggle
        default: true
    - 
        id: toggle-explorer-buttons
        title: Hide File Explorer Buttons
        type: class-toggle
        default: true
    - 
        id: toggle-vault-title
        title: Hide File Explorer Vault Title (Unhoverable)
        type: class-toggle
        default: true
    - 
        id: toggle-explorer-indent
        title: Hide File Explorer Indentation Guide (Unhoverable)
        type: class-toggle
        default: true
    - 
        id: toggle-explorer-collapse
        title: Hide File Explorer Collapse Indicator (Unhoverable)
        type: class-toggle
        default: true
    - 
        id: toggle-tab-section
        title: Hide Note Tab Section
        type: class-toggle
        default: false
    - 
        id: toggle-note-header
        title: Hide Note Title Bar
        type: class-toggle
        default: false
    - 
        id: toggle-status-bar
        title: Hide Status Bar (Unhoverable)
        type: class-toggle
        default: true
    - 
        id: toggle-sync-button
        title: Show Sync Button Independently
        type: class-toggle
        description: Available when Status Bar is hidden.
        default: false
    - 
        id: toggle-scrollbar
        title: Hide Scrollbar
        type: class-toggle
        default: true
    - 
    
    
        id: sidebar-section
        title: Sidebar Section
        type: heading
        description: With a fixed width, the contents of sidebar will pull towards to the middle whenever you resize. This gives you a better focus at the center of a bigger screen.
        collapsed: true
        level: 4
    - 
        id: toggle-sidebar-fixed-left
        title: Fixed Width (Left)
        type: class-toggle
        default: true
    - 
        id: toggle-sidebar-fixed-right
        title: Fixed Width (Right)
        type: class-toggle
        default: true
    - 
        id: toggle-sidebar-fixed-left-auto
        title: Auto Expand Width (Left)
        type: class-toggle
        default: false
    - 
        id: toggle-sidebar-fixed-right-auto
        title: Auto Expand Width (Right)
        type: class-toggle
        default: false
    - 
        id: sidebar-size-left
        title: Width size if fixed (Left)
        type: variable-number-slider
        default: 270
        format: px
        min: 200
        max: 1000
        step: 10
    - 
        id: sidebar-size-right
        title: Width size if fixed (Right)
        type: variable-number-slider
        default: 270
        format: px
        min: 200
        max: 1000
        step: 10
    - 
        id: toggle-sidebar-left-top
        title: Additional space on top of left sidebar
        type: class-toggle
        default: false
    - 
        id: toggle-sidebar-right-top
        title: Additional space on top of right sidebar
        type: class-toggle
        default: true
    - 
    
    
    
    
    
    
        id: markdown-section
        title: Markdown Section
        type: heading
        collapsed: true
        level: 3
    - 
        id: file-line-width
        title: Readable Line Length
        type: variable-number-slider
        default: 700
        format: px
        min: 400
        max: 1200
        step: 10
    -
        id: text-normal
        title: Text Color
        type: variable-themed-color
        format: hsl
        default-light: '#'
        default-dark: '#'
    -
        id: text-muted
        title: Muted Text Color
        type: variable-themed-color
        format: hsl
        default-light: '#'
        default-dark: '#'
    -
        id: text-faint
        title: Faint Text Color
        type: variable-themed-color
        format: hsl
        default-light: '#'
        default-dark: '#'
    -
    
    
        id: typography-section
        title: Typography Section
        type: heading
        collapsed: true
        level: 4
    - 
    
    
        id: bold-color
        title: Bold Color
        type: variable-themed-color
        format: hsl
        default-light: '#'
        default-dark: '#'
    -
        id: bold-weight
        title: Bold Weight
        type: variable-number-slider
        default: 700
        min: 100
        max: 1000
        step: 100
    -
        id: italic-color
        title: Italic Color
        type: variable-themed-color
        format: hsl
        default-light: '#'
        default-dark: '#'
    -
        id: toggle-highlight-type
        title: Highlight Type
        type: class-select
        allowEmpty: false
        default: THT-underline-dark
        options:
            - 
                label: Background-filled
                value: THT-background
            - 
                label: Underlined
                value: THT-underline
            - 
                label: Underlined (Light-mode only)
                value: THT-underline-light
            - 
                label: Underlined (Dark-mode only)
                value: THT-underline-dark
    - 
        id: color-highlight
        title: Highlight Color (Text)
        type: variable-themed-color
        format: hsl
        default-light: '#'
        default-dark: '#'
    -
        id: text-highlight-bg
        title: Highlight Color (Background/Underline)
        type: variable-themed-color
        format: hsl
        default-light: '#'
        default-dark: '#'
    -
        id: color-strikethrough
        title: Strikethrough Color
        type: variable-themed-color
        format: hsl
        default-light: '#'
        default-dark: '#'
    -
        id: inline-code-color
        title: Inline Code Color
        type: variable-themed-color
        format: hsl
        default-light: '#'
        default-dark: '#'
    -
        id: list-marker-color
        title: Listing Bullet/Marker Color
        type: variable-themed-color
        format: hsl
        default-light: '#'
        default-dark: '#'
    -
    
    
        id: heading-section
        title: Heading Section
        description: "Not applicable to cssclass: mado-heading."
        type: heading
        collapsed: true
        level: 4
    - 
    
    
    - 
        id: toggle-h1-margin-top
        title: Enable H1 Spacious Separator
        description: When an H1 is uncollapsed, it will create a big wide space below to distinguish from the next H1. Downside, however, is the first H1 will always have the wide space above it.
        type: class-toggle
        default: true
    -
        id: h1-size
        title: H1 Size
        type: variable-number
        format: em
        default: 2
    -
        id: h2-size
        title: H2 Size
        type: variable-number
        format: em
        default: 1.6
    -
        id: h3-size
        title: H3 Size
        type: variable-number
        format: em
        default: 1.37
    -
        id: h4-size
        title: H4 Size
        type: variable-number
        format: em
        default: 1.25
    -
        id: h5-size
        title: H5 Size
        type: variable-number
        format: em
        default: 1.12
    -
        id: h6-size
        title: H6 Size
        type: variable-number
        format: em
        default: 1.12
    -
        
        id: h1-color
        title: H1 Color
        type: variable-themed-color
        format: hsl
        default-light: '#'
        default-dark: '#'
    -
        id: h2-color
        title: H2 Color
        type: variable-themed-color
        format: hsl
        default-light: '#'
        default-dark: '#'
    -
        id: h3-color
        title: H3 Color
        type: variable-themed-color
        format: hsl
        default-light: '#'
        default-dark: '#'
    -
        id: h4-color
        title: H4 Color
        type: variable-themed-color
        format: hsl
        default-light: '#'
        default-dark: '#'
    -
        id: h5-color
        title: H5 Color
        type: variable-themed-color
        format: hsl
        default-light: '#'
        default-dark: '#'
    -
        id: h6-color
        title: H6 Color
        type: variable-themed-color
        format: hsl
        default-light: '#'
        default-dark: '#'
*/