/* Custom styles for SEO Dashboard */
body {
    background-color: #f8f9fa;
}

.navbar-brand {
    font-weight: 600;
}

/* Dashboard cards */
.dashboard-card {
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}

.dashboard-card:hover {
    transform: translateY(-5px);
}

/* Custom utility classes */
.text-primary-dark {
    color: #0d47a1;
}

.bg-gradient-primary {
    background: linear-gradient(45deg, #2196f3, #1976d2);
} 