28 lines
473 B
CSS
28 lines
473 B
CSS
.ai-report-card {
|
|
background: linear-gradient(135deg, var(--secondary), #4F46E5);
|
|
color: white;
|
|
border: none;
|
|
}
|
|
|
|
.ai-report-card h3 {
|
|
margin-bottom: 1rem;
|
|
color: white !important;
|
|
}
|
|
|
|
.ai-report-card small {
|
|
color: rgba(255, 255, 255, 0.8);
|
|
}
|
|
|
|
.btn-block {
|
|
width: 100%;
|
|
margin-top: 1rem;
|
|
background: white;
|
|
color: var(--secondary);
|
|
border: none;
|
|
}
|
|
|
|
.btn-block:hover {
|
|
background: var(--bg);
|
|
transform: translateY(-2px);
|
|
}
|