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
/* EmptyState component — polished empty/blank-slate placeholder */
.mui-empty-state {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
padding: 3rem 2rem;
}
.mui-empty-state__icon {
font-size: 3rem;
margin-bottom: 1.25rem;
display: flex;
align-items: center;
justify-content: center;
color: var(--mui-text-subtle);
opacity: 0.6;
line-height: 1;
}
.mui-empty-state__title {
font-size: 1rem;
font-weight: 600;
margin: 0 0 0.5rem 0;
color: var(--mui-text);
}
.mui-empty-state__description {
font-size: 0.875rem;
line-height: 1.5;
color: var(--mui-text-muted);
margin: 0;
max-width: 20rem;
}
.mui-empty-state__action {
margin-top: 1.5rem;
}