-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyles.css
More file actions
136 lines (117 loc) · 2.41 KB
/
styles.css
File metadata and controls
136 lines (117 loc) · 2.41 KB
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
.provider-container {
padding: 2rem;
background-color: #f9fafe;
max-width: 900px;
margin: auto;
border-radius: 12px;
margin-top: 30px;
margin-left: 400px;
}
.provider-header {
text-align: center;
color: #2a2a2a;
}
.provider-title {
font-size: 2rem;
font-weight: bold;
}
.provider-subtitle {
font-size: 1.1rem;
color: #666;
}
.provider-generate-card {
text-align: center;
margin-top: 2rem;
background: #ffffff;
padding: 1.5rem;
border-radius: 1rem;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}
.provider-loading-overlay {
text-align: center;
margin-top: 2rem;
}
.provider-spinner {
border: 4px solid #e0e0e0;
border-top: 4px solid #f9a43a;
border-radius: 50%;
width: 30px;
height: 30px;
animation: spin 1s linear infinite;
margin: auto;
margin-bottom: 1rem;
}
@keyframes spin {
to {
transform: rotate(360deg);
}
}
.provider-download-top {
text-align: center;
}
.provider-report-card {
background: #ffffff;
padding: 2rem;
border-radius: 1rem;
box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
margin-top: 2rem;
}
.provider-summary-section,
.provider-recommendation-section {
margin-top: 1.5rem;
background-color: #f0f8f4;
padding: 1rem 1.5rem;
border-left: 4px solid #28a745;
border-radius: 0.5rem;
}
.provider-insight-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 1rem;
margin-top: 1.5rem;
}
.provider-insight-box {
background-color: #eefcf4;
padding: 1rem;
border-radius: 0.5rem;
}
.provider-insight-box h4,
.provider-summary-section h3,
.provider-recommendation-section h4 {
color: #2f2f2f;
margin-bottom: 0.75rem;
}
.provider-recommendation-section ul {
list-style-type: none;
padding-left: 1.25rem;
}
.provider-recommendation-section li {
margin-bottom: 0.5rem;
line-height: 1.6;
}
/* Generate Action Button */
.provider-generate-action-button {
background-color: #f9a43a;
color: #ffffff;
border: none;
padding: 0.75rem 1.5rem;
border-radius: 8px;
cursor: pointer;
transition: background-color 0.3s ease;
}
.provider-generate-action-button:hover {
background-color: #f19626;
}
/* Download Action Button */
.provider-download-action-button {
background-color: #f9a43a;
color: #ffffff;
border: none;
padding: 0.75rem 1.5rem;
border-radius: 8px;
cursor: pointer;
transition: background-color 0.3s ease;
}
.provider-download-action-button:hover {
background-color: #f19626;
}