/**
 * Breadcrumb Styles
 *
 * @package WP_Gallery_Plugin
 * @since 4.0.0
 */

.wpgp-breadcrumb {
    margin: 20px 0;
    padding: 12px 20px;
    background: #f8f9fa;
    border-radius: 6px;
    font-size: 14px;
}

.wpgp-breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.wpgp-breadcrumb-item {
    display: flex;
    align-items: center;
}

.wpgp-breadcrumb-item:not(:last-child)::after {
    content: '/';
    margin-left: 8px;
    color: #6c757d;
    font-weight: 300;
}

.wpgp-breadcrumb-item a {
    color: #C3DABE;
    text-decoration: none;
    transition: color 0.2s ease;
}

.wpgp-breadcrumb-item a:hover {
    color: #a8d19f;
    text-decoration: underline;
}

.wpgp-breadcrumb-item span[aria-current="page"] {
    color: #495057;
    font-weight: 500;
}



body.dark-theme .wpgp-breadcrumb {
    background: #3F434D;
    color: #e0e0e0;
}

body.dark-theme .wpgp-breadcrumb-item:not(:last-child)::after {
    color: #999999;
}

body.dark-theme .wpgp-breadcrumb-item a {
    color: #C3DABE;
}

body.dark-theme .wpgp-breadcrumb-item a:hover {
    color: #a8c9a1;
}

body.dark-theme .wpgp-breadcrumb-item span[aria-current="page"] {
    color: #e0e0e0;
}

/* Responsive */
@media (max-width: 768px) {
    .wpgp-breadcrumb {
        font-size: 13px;
        padding: 10px 15px;
    }

    .wpgp-breadcrumb-list {
        gap: 6px;
    }

    .wpgp-breadcrumb-item:not(:last-child)::after {
        margin-left: 6px;
    }
}
