2026-02-02 20:34:35 +00:00
|
|
|
.emptyState {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
padding: 4rem 2rem;
|
|
|
|
|
text-align: center;
|
2026-02-03 14:12:48 +00:00
|
|
|
background: var(--bg-card, white);
|
|
|
|
|
border: 2px solid var(--border-color, #e5dfd5);
|
|
|
|
|
border-radius: 16px;
|
2026-02-02 20:34:35 +00:00
|
|
|
min-height: 400px;
|
2026-02-03 14:12:48 +00:00
|
|
|
box-shadow: var(--shadow-soft, 0 2px 8px rgba(26, 22, 18, 0.06));
|
2026-02-02 20:34:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.icon {
|
2026-02-03 14:12:48 +00:00
|
|
|
color: var(--text-muted, #8a847a);
|
2026-02-02 20:34:35 +00:00
|
|
|
margin-bottom: 1.5rem;
|
2026-02-03 14:12:48 +00:00
|
|
|
opacity: 0.7;
|
2026-02-02 20:34:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.title {
|
2026-02-03 14:12:48 +00:00
|
|
|
margin: 0 0 0.75rem 0;
|
|
|
|
|
font-size: 1.5rem;
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
color: var(--text-primary, #1a1612);
|
|
|
|
|
font-family: var(--font-playfair), 'Playfair Display', serif;
|
2026-02-02 20:34:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.message {
|
2026-02-03 14:12:48 +00:00
|
|
|
margin: 0 0 2rem 0;
|
2026-02-02 20:34:35 +00:00
|
|
|
font-size: 1rem;
|
2026-02-03 14:12:48 +00:00
|
|
|
color: var(--text-secondary, #5c564d);
|
2026-02-02 20:34:35 +00:00
|
|
|
max-width: 500px;
|
2026-02-03 14:12:48 +00:00
|
|
|
line-height: 1.6;
|
2026-02-02 20:34:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.button {
|
2026-02-03 14:12:48 +00:00
|
|
|
padding: 0.875rem 2rem;
|
2026-02-02 20:34:35 +00:00
|
|
|
font-size: 1rem;
|
2026-02-03 14:12:48 +00:00
|
|
|
font-weight: 600;
|
|
|
|
|
background: var(--accent-coral, #e07256);
|
2026-02-02 20:34:35 +00:00
|
|
|
color: white;
|
|
|
|
|
border: none;
|
2026-02-03 14:12:48 +00:00
|
|
|
border-radius: 8px;
|
2026-02-02 20:34:35 +00:00
|
|
|
cursor: pointer;
|
|
|
|
|
transition: all 0.2s ease;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.button:hover {
|
2026-02-03 14:12:48 +00:00
|
|
|
background: var(--accent-coral-dark, #c45a3f);
|
|
|
|
|
transform: translateY(-1px);
|
|
|
|
|
box-shadow: 0 4px 12px rgba(224, 114, 86, 0.3);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.button:active {
|
|
|
|
|
transform: translateY(0);
|
2026-02-02 20:34:35 +00:00
|
|
|
}
|