.app-layout {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: 200px;
    min-width: 200px;
    padding: 1.25rem;
    background: var(--pico-card-background-color);
    border-right: 1px solid var(--pico-muted-border-color);
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    overflow-y: auto;
    z-index: 10;
    box-sizing: border-box;
}

.sidebar-brand {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--pico-primary);
    margin-bottom: 2rem;
}

.sidebar-menu {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.sidebar-menu a {
    display: block;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    text-decoration: none;
    color: var(--pico-color);
    font-size: 0.95rem;
}

.sidebar-menu a:hover {
    background: rgba(255, 255, 255, 0.08);
}

.content {
    margin-left: 200px;
    padding: 2rem;
    flex: 1;
    min-width: 0;
}

.content .grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 1rem;
}

.stat {
    font-size: 2rem;
    font-weight: bold;
    margin: 0;
    color: var(--pico-primary);
}

/* Badges */
.badge {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.badge.shortlisted { background: #2563eb; color: white; }
.badge.approved { background: #16a34a; color: white; }
.badge.rejected { background: #dc2626; color: white; }
.badge.watchlist { background: #ca8a04; color: white; }
.badge.new { background: #6b7280; color: white; }
.badge.enriching { background: #7c3aed; color: white; }
.badge.scored { background: #0891b2; color: white; }
.badge.registering { background: #ea580c; color: white; }
.badge.won { background: #16a34a; color: white; }
.badge.lost { background: #dc2626; color: white; }
.badge.dropcatch { background: #6366f1; color: white; }
.badge.auction { background: #d97706; color: white; }

/* Action buttons */
.btn-sm {
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    margin-right: 0.25rem;
}

.btn-sm.approve, button.approve { background: #16a34a; color: white; }
.btn-sm.reject, button.reject { background: #dc2626; color: white; }
.btn-sm.watch, button.watch { background: #ca8a04; color: white; }

.action-buttons {
    display: flex;
    gap: 0.5rem;
}

/* Domain card */
.domain-card {
    max-width: 700px;
}

.domain-card section {
    margin-bottom: 1rem;
}

.domain-card h4 {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--pico-muted-color);
}
