-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
1339 lines (1177 loc) · 31.8 KB
/
index.css
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
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
position: relative;
}
.search-btn {
display: flex;
align-items: center;
justify-content: space-between;
padding: 10px 20px;
background-color: #ffffff;
color: rgb(53, 51, 51);
border: none;
border-radius: 25px;
font-size: 16px;
width: 400px;
cursor: pointer;
}
.search-btn .ctrl-k {
font-size: 0.9rem;
color: #6d6969;
margin-left: 220px; /* Space between "Search" and "ctrl+k" */
}
.search-container {
display: flex;
align-items: center;
justify-content: center;
}
#search-wrapper {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
justify-content: center;
align-items: center;
z-index: 9999;
}
.blur-background {
position: fixed; /* Fixed to the viewport */
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(255, 255, 255, 0.3); /* Semi-transparent white background */
backdrop-filter: blur(5px); /* Apply blur to the background behind the element */
z-index: -1; /* Ensure it's behind the content */
}
#search-bar {
position: absolute; /* Position relative to its container */
top: -200px; /* Adjust this value to move it higher or lower */
left: 50%;
transform: translateX(-50%); /* Centers it horizontally */
width: 50%; /* Adjust the width as needed */
height: 60px;
padding: 10px 15px;
font-size: 16px;
box-sizing: border-box;
border-radius: 25px; /* Makes the borders rounded */
border: 1px solid #ccc; /* Border color */
outline: none; /* Removes default outline */
display: block; /* Ensures centering works */
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional shadow for a sleek look */
/* opacity */
opacity:0.8;
}
#results {
position: absolute;
top: -120px;
left: 50%;
transform: translateX(-50%); /* Centers the dropdown below the input */
width: 50%; /* Match the input width */
background-color: white;
max-height: 300px;
overflow-y: auto;
z-index: 10;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
border-radius: 8px; /* Rounded corners for the dropdown */
;
}
#results1 {
position: absolute;
top: 200px;
left: 50%;
transform: translateX(-50%); /* Centers the dropdown below the input */
/* width: 50%; Match the input width */
max-width: fit-content;
background-color: rgba(0, 0, 0, 0);
color:white;
text-align:center;
max-height: 300px;
/* overflow-y: auto; */
z-index: 10;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
border-radius: 8px; /* Rounded corners for the dropdown */
}
.result-item {
display: block;
padding: 10px;
border-bottom: 1px solid #ddd;
text-decoration: none;
color: #333;
}
.result-item:hover {
background-color: #f0f0f0;
}
.result-item a {
text-decoration: none;
color: #333;
}
button:focus {
outline: none;
box-shadow: none;
}
.btn:focus {
outline: none !important;
box-shadow: none !important;
}
.menu-links {
height: auto !important; /* Dynamic height */
overflow: visible !important; /* Prevent clipping */
max-height: 20vh;
}
/* For screens smaller than 768px (tablets and smaller) */
@media (min-width: 768px) {
.menu-links {
height: 6.5vh !important; /* CHANGE THIS WHEN YOU ARE INCREASING MENU LINKS */
overflow-y: scroll !important; /* Add vertical scroll if needed */
}
}
@media (max-width: 768px) {
.menu-links {
height: 20vh !important; /* Limit height to 50% of the viewport height */
overflow-y: scroll !important; /* Add vertical scroll if needed */
}
}
@media (max-width: 930px) {
.menu-links {
height: 40vh !important; /* Limit height to 50% of the viewport height */
overflow-y: scroll !important; /* Add vertical scroll if needed */
}
}
@media (max-width: 1144px) {
.menu-links {
height: 10vh !important; /* Limit height to 50% of the viewport height */
overflow-y: scroll !important; /* Add vertical scroll if needed */
}
}
@media (max-width: 480px) {
.menu-links {
height: 40vh !important;
/* overflow-x: auto !important; Allow horizontal scrolling if content overflows */
overflow-y: scroll !important;
width: 100% !important;
}
}
/* Make sure the parent elements don't restrict scrolling */
.menu-container {
overflow: visible !important;
}
.spn{
font-weight: bold;
}
.content {
max-width: 800px;
margin: 20px;
font-size: 1.2em;
}
.citation {
color: rgb(0, 0, 0);
cursor:help;
text-decoration: underline dotted rgb(43, 107, 255);
}
.citation:hover {
color: rgb(0, 0, 0);
}
#info-box {
position: fixed;
padding: 10px;
border: 1px solid #333;
background-color: #f9f9f9;
color: #333;
display: none;
max-width: 40%;
border-radius: 4px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
z-index: 100000;
opacity: 0; /* Start with invisible */
transform: scale(0.8); /* Start with smaller size */
transition: opacity 0.3s, transform 0.3s; /* Smooth transition for scale and opacity */
overflow: hidden; /* Prevent overflow */
word-wrap: break-word; /* Break long words into the next line if they don't fit */
white-space: normal; /* Allow wrapping of text */
max-height: auto; /* Ensure the box expands based on content height */
pointer-events: none;
}
/* change width of info box to 30 rem for mobile screens */
@media (max-width: 480px) {
#info-box {
width: 16rem;
}
}
@keyframes pop-up {
0% {
opacity: 0;
transform: scale(0.8);
}
100% {
opacity: 1;
transform: scale(1);
}
}
@keyframes pop-out {
0% {
opacity: 1;
transform: scale(1);
}
100% {
opacity: 0;
transform: scale(0.8);
}
}
.shimmer-swipe {
position: relative;
overflow: hidden;
}
.shimmer-swipe::after {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: rgba(36, 214, 125, 0.15); /* Light translucent green */
transform: rotate(45deg);
animation: shimmer-animation 1.5s ease-in-out;
pointer-events: none;
z-index: 0;
border-radius: 16px;
}
@keyframes shimmer-animation {
0% {
transform: translate(-150%, -150%) rotate(45deg);
}
100% {
transform: translate(150%, 150%) rotate(45deg);
}
}
.menu-container {
display: flex;
align-items: center;
justify-content: flex-start; /* Align items to the left */
padding: 100px; /* Optional: add padding to create space */
}
.menu-icon {
display: block; /* Initially display the icon */
font-size: 24px;
cursor: auto; /* Change cursor to default */
margin-right: 10px; /* Optional: space between icon and menu links */
}
/* Media query to hide the hamburger menu on larger screens */
@media (min-width: 769px) {
.menu-icon {
display: none; /* Hide hamburger menu on larger screens */
}
}
@keyframes suck-in {
0% {
transform: scale(1);
opacity: 1;
}
100% {
transform: scale(0);
opacity: 0;
}
}
.menu-links {
display: none;
transition: opacity 0.5s ease;
}
.menu-links.show {
display: flex;
flex-direction: row;
opacity: 1;
}
.menu-links.hide {
opacity: 0;
animation: suck-in 0.5s forwards; /* Apply suck-in animation */
}
/* Only show the hamburger icon on smaller screens */
@media (max-width: 768px) {
.menu-links {
display: none;
}
}
.verse-style {
position: relative; /* Position relative for absolute positioning of the pseudo-element */
width: 100%; /* Full width of the container */
padding: 20px; /* Maintain padding for aesthetics */
text-align: center;
margin: 10px 0; /* Vertical spacing between elements */
/* background: rgba(255, 255, 255, 0.85); Light background behind text */
border-radius: 10px; /* Rounded corners */
overflow: hidden; /* Hide overflow from the pseudo-element */
}
/* Content inside the verse-style */
.verse-style h4 {
position: relative;
z-index: 1;
font-family: 'Georgia', serif;
/* font-weight: 600; */
font-style: italic;
font-size: 1.6rem;
color: #37474f;
line-height: 1.5;
letter-spacing: 0.6px;
text-shadow: 1px 2px 3px rgba(0, 0, 0, 0.25);
margin: 0;
background-color: white;
padding: 10px;
border-radius: 12px;
display: block; /* Ensure it takes full width */
width: 100%; /* Full width of the container */
box-sizing: border-box; /* Includes padding in the width calculation */
}
.verse-style h4:before {
content: '';
position: absolute;
top: -10px;
left: -10px;
right: -10px;
bottom: -10px;
background: linear-gradient(135deg, #24d67d, #04acd6);
z-index: -1;
border-radius: 16px;
}
.verse-style h4:after {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: white;
border-radius: 12px;
z-index: -1;
}
html, body {
overflow-y: auto !important;
height: 100%;
}
/* Base styles */
html, body {
margin: 0;
padding: 0;
min-height: 100%;
background-color: #c8ffcd;
overflow-x: hidden; /* Prevent horizontal scrolling */
overflow-y: auto;
}
body {
font-family: Arial, sans-serif;
display: flex;
flex-direction: column;
min-height: 100vh;
}
.responsive-description {
font-size: 16px;
white-space: normal; /* Allow wrapping on large screens */
overflow: visible; /* Show full text on large screens */
max-width: 100%; /* No max width constraint on large screens */
}
/* Medium screens */
@media (max-width: 1000px) {
.responsive-description {
font-size: 14px;
white-space: nowrap; /* Prevent text wrapping */
overflow: hidden; /* Hide overflowed text */
text-overflow: ellipsis; /* Show ellipsis when text overflows */
max-width: 200px;
}
}
@media (max-width: 768px) {
.responsive-description {
font-size: 14px;
white-space: nowrap; /* Prevent text wrapping */
overflow: hidden; /* Hide overflowed text */
text-overflow: ellipsis; /* Show ellipsis when text overflows */
max-width: 200px;
}
}
/* Small screens */
@media (max-width: 480px) {
.responsive-description {
font-size: 12px;
white-space: nowrap; /* Prevent text wrapping */
overflow: hidden; /* Hide overflowed text */
text-overflow: ellipsis; /* Show ellipsis when text overflows */
max-width: 150px;
}
}
.responsive-description1 {
font-size: clamp(1.8rem, 6vw, 4rem) !important; /* Dynamically resize with limits */
white-space: normal; /* Allow text wrapping if needed */
max-width: 100%; /* Full width of the container */
line-height: 1.2; /* Tighten line height */
margin: 0; /* Remove extra margins */
}
/* Further adjustments for smaller screens */
@media (max-width: 991px) {
.responsive-description1 {
font-size: clamp(2.5rem, 5vw, 7rem) !important;
}
}
@media (max-width: 768px) {
.responsive-description1 {
font-size: clamp(2.5rem, 5vw, 7rem) !important;
}
}
@media (max-width: 480px) {
.responsive-description1 {
font-size: clamp(2.5rem, 8vw, 5rem) !important;
}
}
/* Keyframes for the pop-up animation */
@keyframes popUp {
0% {
transform: scale(0);
opacity: 0;
}
60% {
transform: scale(1.038);
opacity: 1;
}
100% {
transform: scale(1);
}
}
/* @keyframes popOut {
0% {
transform: scale(2);
opacity: 0;
}
30%{
transform: scale(1.5);
opacity: 0;
}
60% {
transform: scale(1.038);
opacity: 1;
}
100% {
transform: scale(1);
}
} */
@keyframes popUp1 {
0% {
transform: scale(0);
opacity: 0;
}
60% {
transform: scale(1.038);
opacity: 1;
}
100% {
transform: scale(1.001);
}
}
@keyframes popUp2 {
0% {
transform: scale(0);
opacity: 0;
}
60% {
transform: scale(5);
opacity: 1;
}
100% {
transform: scale(1.001);
}
}
/* Add this class to apply the animation */
.pop-up-animate {
animation: popUp 1s ease;
transform-origin: top center;
}
.pop-up-animate1 {
animation: popUp1 1s ease;
}
.pop-up-animate2 {
animation: popUp2 1s ease;
}
.pop-out-animate {
animation: popOut 1s ease;
}
/* Navbar styling */
.navbar {
background-color: #c8ffcd;
color: #6fd34e;
position: fixed;
top: 0;
left: 0;
/* z-index: 10; */
width: 100%;
height: 80px;
margin-bottom: 0;
border: none;
}
/* Menu container styling */
/* Content container */
.content-container {
flex: 1;
padding: 20px;
width: 100%;
box-sizing: border-box;
margin-top: 80px;
background-color: #c8ffcd;
}
/* Content divs */
.content-div {
display: none;
padding: 2rem;
border: 1px solid #ddd;
border-radius: 8px;
text-align: center;
font-size: 1.25rem;
width: 100%;
box-sizing: border-box;
margin: 0 auto;
overflow-x: auto; /* Allow horizontal scroll for table if needed */
}
/* Table styling */
.custom-table {
width: 100%;
min-width: 800px; /* Minimum width to prevent squishing */
margin: 20px 0;
background-color: #f9f9fb;
border-radius: 10px;
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}
/* Table cell responsiveness */
.custom-table th,
.custom-table td {
padding: 14px 16px;
word-wrap: break-word;
min-width: 100px; /* Minimum width for cells */
}
/* Footer styling */
/* Responsive adjustments */
@media (max-width: 768px) {
.content-container {
padding: 10px;
}
.content-div {
padding: 1rem;
}
.menu-container {
padding: 10px;
}
.custom-table {
font-size: 0.9rem;
}
.footer {
padding: 10px;
flex-direction: column;
align-items: center;
gap: 10px;
}
.footer1 {
padding: 10px;
flex-direction: column;
align-items: center;
gap: 10px;
}
}
/* Mobile responsiveness */
@media (max-width: 480px) {
.navbar {
height: 60px;
}
.content-container {
margin-top: 60px;
}
#typing-effect {
font-size: 24px;
letter-spacing: 2px;
}
.btn-group-toggle {
flex-direction: column;
}
.btn-group-toggle .btn {
width: 100%;
margin: 5px 0;
}
}
/* Table container for horizontal scrolling */
.table-container {
width: 100%;
overflow-x: auto;
background-color: #c8ffcd;
}
/* Ensure content doesn't overflow horizontally */
.container-fluid {
max-width: 100%;
padding: 0 15px;
box-sizing: border-box;
}
html, body {
height: 100%; /* Ensure the html and body take full height */
margin: 0; /* Remove default margin */
}
body {
font-family: Arial, sans-serif;
display: flex;
flex-direction: column;
min-height: 100vh; /* Use minimum height instead of fixed height */
overflow-y: auto; /* Allow body to scroll */
}
.footer {
background-color: rgba(0, 0, 0, 0.8); /* Dark translucent background */
color: #FFFFFF;
/* display: flex;
align-items: center;
justify-content: space-between; */
padding: 15px 20px;
font-family: Arial, sans-serif;
box-shadow: 0px -4px 8px rgba(0, 0, 0, 0.2); /* subtle shadow for depth */
width: 100%; /* Ensures it spans across the page */
}
.footer1 {
display: flex;
align-items: center;
justify-content: space-between;
}
.footer a {
color: rgb(191, 186, 186); /* Light blue accent color */
text-decoration: underline;
font-size: 16px;
margin-right: 10px;
transition: color 0.3s ease;
}
.footer a:hover {
color: #ffffff; /* White on hover */
}
/* Navbar styling */
.navbar {
background-color: #c8ffcd;
color: #6fd34e;
position: fixed; /* Change to fixed */
top: 0;
left: 0;
z-index: 10;
width: 100%;
height: 80px;
}
/* Flex properties for container */
.container-fluid {
display: flex; /* Use flexbox */
justify-content: center; /* Center horizontally */
align-items: center; /* Center vertically */
height: 100%; /* Make it take full height of the navbar */
flex-wrap: wrap;
}
@media (max-width: 5000px) {
.navbar-brand h1 {
font-size: 5rem; /* Smaller font size on smaller screens */
}
.navbar-brand img {
width: 100vw; /* Responsive width for logo on smaller screens */
max-width: 280px;
}
/* Adjust navbar height and padding */
.navbar {
height: auto; /* Allow navbar height to adjust */
padding: 20px; /* Add padding for smaller screens */
}
}
@media (max-width: 2000px) {
.navbar-brand h1 {
font-size: 1.5rem; /* Smaller font size on smaller screens */
}
.navbar-brand img {
width: 50vw; /* Responsive width for logo on smaller screens */
max-width: 140px;
}
/* Adjust navbar height and padding */
.navbar {
height: auto; /* Allow navbar height to adjust */
padding: 10px; /* Add padding for smaller screens */
}
}
@media (max-width: 1700px) {
.navbar-brand h1 {
font-size: 1.5rem; /* Smaller font size on smaller screens */
}
.navbar-brand img {
width: 50vw; /* Responsive width for logo on smaller screens */
max-width: 140px;
}
/* Adjust navbar height and padding */
.navbar {
height: auto; /* Allow navbar height to adjust */
padding: 10px; /* Add padding for smaller screens */
}
}
/* Media Queries for Responsiveness */
@media (max-width: 768px) {
.navbar-brand h1 {
font-size: 0.4rem; /* Smaller font size on smaller screens */
}
.navbar-brand img {
width: 15vw; /* Responsive width for logo on smaller screens */
max-width: 70px;
}
/* Adjust navbar height and padding */
.navbar {
height: auto; /* Allow navbar height to adjust */
padding: 10px; /* Add padding for smaller screens */
}
}
@media (max-width: 480px) {
.navbar-brand h1 {
font-size: 0.2rem; /* Further smaller font size */
}
.navbar-brand img {
width: 25vw; /* Logo size for mobile */
max-width: 50px;
}
/* Further adjustments */
.navbar {
padding: 5px; /* Add padding for mobile */
}
}
.menu-container {
position: sticky;
top: 0; /* Change to 0 to stick to very top */
z-index: 999; /* Just below navbar */
background-color: #c8ffcd;
padding: 25px 25px;
width:100%;
}
.btn-group-toggle {
width: 100%; /* Full width for better distribution */
display: flex; /* Use flexbox for buttons */
flex-wrap: wrap; /* Allow buttons to wrap to next line if needed */
justify-content: center; /* Center buttons */
overflow: hidden;
}
.btn-secondary {
background-color: #007BFF; /* Bootstrap Primary Blue */
color: #ffffff;
border: none;
font-weight: bold;
padding: 12px 20px; /* Increased padding for better spacing */
margin: 5px; /* Margin between buttons for spacing */
flex: 1 1 150px; /* Allow buttons to grow and shrink, with a minimum width */
}
/* Responsive Design */
@media (max-width: 20px) {
.btn-group-toggle {
flex-direction: column; /* Stack buttons vertically on small screens */
align-items: center; /* Center buttons */
}
.btn-secondary {
width: 90%; /* Make buttons wider on small screens */
margin: 5px 0; /* Margin between stacked buttons */
}
}
.content-container {
flex: 1;
display: flex;
flex-direction: column;
align-items: stretch;
padding: 20px;
width: 100vw;
height: auto; /* Remove fixed height */
margin: 0;
background-color: #c8ffcd;
overflow: visible; /* Change from auto to visible */
}
/* Modify the content-div styling */
.content-div {
display: none;
padding: 2rem;
border: 1px solid #ddd;
border-radius: 8px;
text-align: center;
font-size: 1.25rem;
width: 100%;
height: auto;
color: #333333;
margin: 0 auto;
overflow: visible; /* Change from auto to visible */
max-height: none; /* Remove max-height constraint */
}
/* Colors for each content div */
#div1 {
background-color: #21dcb4;
color: #333333;
/* background-image: url('./cosmos.jpg');
background-size:cover;
background-repeat: no-repeat;
background-position: center; */
}
#div2 {
background-color: #FF7043;
color: #ffffff;
}
#div3 {
background-color: #29B6F6;
color: #ffffff;
}
#div4 {
background-color: #AB47BC;
color: #ffffff;
}
#div5 {
background-color: #92286a;
color: #ffffff;
}
#div6 {
background-color: #7c0b6f;
color: #ffffff;
}
#div7 {
background-color: #7c0b6f;
color: #ffffff;
}
/* Table Styling */
.table-wrapper {
width: 100%;
overflow-x: auto;
margin: 20px 0;
border-radius: 10px;
background-color: #f9f9fb;
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}
/* Base table styles */
.custom-table {
width: 100%;
min-width: 600px; /* Minimum width to prevent squishing */
border-collapse: separate;
border-spacing: 0;
font-size: 1.1rem;
text-align: left;
background-color: #f9f9fb;
}
/* Table Header */
.custom-table th {
background-color: #e0f7fa;
font-weight: bold;
padding: 14px 16px;
color: #00796b;
border-bottom: 2px solid #b2dfdb;
border: 1px solid rgba(0, 0, 0, 0.1);
position: sticky;
top: 0;
}
/* Table Cells */
.custom-table th,
.custom-table td {
padding: 14px 16px;
color: #333333;
border: 1px solid rgba(0, 0, 0, 0.1);
}
/* Table Images */
.custom-table img {
width: 50px;
height: auto;
border-radius: 5px;
}
/* Links */
.custom-table a {