Files

58 lines
1.1 KiB
CSS
Raw Permalink Normal View History

.emptyState {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 4rem 2rem;
text-align: center;
background: var(--bg-card);
border: 2px solid var(--border);
border-radius: 16px;
min-height: 400px;
box-shadow: var(--shadow-soft, 0 2px 8px rgba(var(--shadow-rgb), 0.06));
}
.icon {
color: var(--text-muted);
margin-bottom: 1.5rem;
opacity: 0.7;
}
.title {
margin: 0 0 0.75rem 0;
font-size: 1.5rem;
font-weight: 700;
color: var(--text-primary);
font-family: var(--font-display);
}
.message {
margin: 0 0 2rem 0;
font-size: 1rem;
color: var(--text-secondary);
max-width: 500px;
line-height: 1.6;
}
.button {
padding: 0.875rem 2rem;
font-size: 1rem;
font-weight: 600;
background: var(--brand);
color: var(--brand-on);
border: none;
border-radius: 8px;
cursor: pointer;
transition: all 0.2s ease;
}
.button:hover {
background: var(--brand-strong);
transform: translateY(-1px);
box-shadow: 0 4px 12px rgba(var(--brand-rgb), 0.3);
}
.button:active {
transform: translateY(0);
}