File size: 3,084 Bytes
e1c192a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
/* ----------------- General body ----------------- */
body {
    font-family: 'Arial', sans-serif;
    background-color: #fff0f5;  /* soft pink background */
    margin: 0;
    padding: 0;
}

/* ----------------- Header ----------------- */
header {
    width: 100%;
    background: linear-gradient(90deg, #ff7eb9, #ff63a5, #ff1e56);
    color: white;
    padding: 1rem 0;
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 6px 12px rgba(0,0,0,0.2); /* stronger shadow */
}

/* ----------------- Footer ----------------- */
footer {
    width: 100%;
    background: linear-gradient(90deg, #ff1e56, #ff63a5, #ff7eb9);
    color: white;
    padding: 1rem 0;
    text-align: center;
    font-size: 0.9rem;
    box-shadow: 0 -6px 12px rgba(0,0,0,0.2); /* stronger shadow */
    position: relative;
    bottom: 0;
}

/* ----------------- Main content container ----------------- */
.main-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding-left: 2rem;
    padding-right: 2rem;
    background-color: #ffffff; /* white background for content */
    border-radius: 12px;       /* rounded corners */
    box-shadow: 0 8px 20px rgba(0,0,0,0.1); /* soft shadow for card-like effect */
}

/* ----------------- Navigation bar ----------------- */
.navbar {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}
.nav-link {
    color: white !important;
    font-weight: bold;
    font-size: 1rem;
    text-decoration: none;
    transition: 0.3s;
}
.nav-link:hover {
    text-decoration: underline;
    text-shadow: 0 0 8px rgba(255,255,255,0.7); /* subtle glow on hover */
}

/* Page title */
.page-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 25px;
    background: linear-gradient(to right, #ff77b4, #ff3c8c);
    -webkit-background-clip: text;
    color: transparent;
}

/* Card styling */
.custom-card {
    border-radius: 12px;
    box-shadow: 0px 4px 15px rgba(255, 105, 180, 0.25);
    border: none;
}

.card-header {
    font-weight: 600;
    background: linear-gradient(to right, #ffd1e8, #ffc0df);
    border-radius: 12px 12px 0 0;
}

/* Dropdown styling */
.dropdown {
    box-shadow: 0px 2px 10px rgba(255, 105, 180, 0.2);
}

/* General text style */
.filter-label {
    font-weight: 600;
}

/* Page title */
.page-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 25px;
    background: linear-gradient(to right, #ff77b4, #ff3c8c);
    -webkit-background-clip: text;
    color: transparent;
}

/* Card styling */
.custom-card {
    border-radius: 12px;
    box-shadow: 0px 4px 15px rgba(255, 105, 180, 0.25);
    border: none;
}

.card-header {
    font-weight: 600;
    background: linear-gradient(to right, #ffd1e8, #ffc0df);
    border-radius: 12px 12px 0 0;
}

/* Dropdown styling */
.dropdown {
    box-shadow: 0px 2px 10px rgba(255, 105, 180, 0.2);
}

/* General text style */
.filter-label {
    font-weight: 600;
}