:root {
    --primary: #2563eb;
    --dark: #0f172a;
    --light: #f8fafc;
    --success: #10b981;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--light);
    margin: 0;
}

.sidebar {
    width: 260px;
    height: 100vh;
    position: fixed;
    background: var(--dark);
    color: white;
    padding: 25px;
}

.nav-link {
    color: #94a3b8;
    border-radius: 8px;
    margin-bottom: 5px;
    padding: 12px;
    text-decoration: none;
    display: block;
}

.nav-link.active,
.nav-link:hover {
    background: #1e293b;
    color: white;
}

.content {
    margin-left: 260px;
    padding: 40px;
}

.card-business {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    padding: 25px;
    border: 1px solid #e2e8f0;
}

.btn-primary {
    background: var(--primary);
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    color: white;
}

.status-badge {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.badge-pending {
    background: #fef3c7;
    color: #92400e;
}

.badge-success {
    background: #d1fae5;
    color: #065f46;
}