.app {
min-height: 100vh;
display: flex;
flex-direction: column;
}
.main {
flex: 1;
margin-top: var(--header-height);
margin-right: var(--sidebar-width);
display: flex;
flex-direction: column;
}
.results-section {
flex: 1;
padding: 1rem 1.5rem;
}
.results-header {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 1rem;
}
.result-count {
font-size: 0.875rem;
color: var(--text-muted);
}
.results-list {
display: flex;
flex-direction: column;
gap: 0.75rem;
}
.filter-label {
font-size: 0.6875rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.05em;
color: var(--text-muted);
margin-right: 0.5rem;
}
.empty-state {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 4rem 2rem;
text-align: center;
color: var(--text-muted);
}
.empty-state svg {
width: 64px;
height: 64px;
margin-bottom: 1rem;
opacity: 0.5;
}
.empty-state h3 {
font-size: 1.25rem;
margin-bottom: 0.5rem;
color: var(--text-secondary);
}
.empty-state p {
font-size: 0.875rem;
}
.loading {
display: flex;
align-items: center;
justify-content: center;
padding: 2rem;
}
.loading-spinner {
width: 40px;
height: 40px;
border: 3px solid var(--border-color);
border-top-color: var(--accent-primary);
border-radius: 50%;
animation: spin 1s linear infinite;
}
@keyframes spin {
to { transform: rotate(360deg); }
}
.section-divider {
height: 1px;
background: var(--border-color);
margin: 1rem 0;
}