/**
 * Seller Dashboard Navigation Styles
 * Modern, responsive, and clean design
 */

.seller-dashboard-nav-wrapper {
    background: #fff;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05); /* Soft shadow */
    margin-bottom: 25px;
    overflow-x: auto; /* Allow scrolling on small mobile screens */
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Left align items */
}

/* Hide scrollbar for cleaner look but allow functionality */
.seller-dashboard-nav-wrapper::-webkit-scrollbar {
    height: 4px;
}
.seller-dashboard-nav-wrapper::-webkit-scrollbar-track {
    background: #f1f1f1; 
}
.seller-dashboard-nav-wrapper::-webkit-scrollbar-thumb {
    background: #ccc; 
    border-radius: 4px;
}

.seller-nav-item {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    margin-right: 10px;
    color: #555;
    text-decoration: none;
    border-radius: 50px; /* Pill shape */
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 14px;
    border: 1px solid transparent;
}

.seller-nav-item:last-child {
    margin-right: 0;
}

.seller-nav-item i {
    margin-right: 8px;
    font-size: 18px;
    vertical-align: middle;
    color: #777;
    transition: color 0.3s ease;
}

/* Hover State */
.seller-nav-item:hover {
    background-color: #f8f9fa;
    color: #333;
    text-decoration: none;
}

.seller-nav-item:hover i {
    color: #333;
}

/* Active State */
.seller-nav-item.active {
    background-color: #e3f2fd; /* Light Blue Background */
    color: #1976d2; /* Primary Blue Text */
    border-color: #bbdefb;
    box-shadow: 0 2px 4px rgba(25, 118, 210, 0.15);
}

.seller-nav-item.active i {
    color: #1976d2;
}

/* Mobile Adjustments */
@media (max-width: 767px) {
    .seller-dashboard-nav-wrapper {
        padding: 10px;
        margin-left: -15px; /* Pull to edges on mobile if inside container */
        margin-right: -15px;
        border-radius: 0;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }
    
    .seller-nav-item {
        padding: 8px 15px;
        font-size: 13px;
    }
}
