/**
 * GameDB - Breadcrumb Component CSS
 * 
 * Global styles for breadcrumb navigation
 */

.breadcrumb {
    margin-bottom: 30px;
    font-size: 14px;
    color: #64748b;
}

.breadcrumb a {
    color: #6366f1;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #ec4899;
}

.breadcrumb span {
    margin: 0 8px;
    color: #cbd5e1;
}

.breadcrumb .current {
    color: #1e293b;
    font-weight: 500;
}

