/* Basic styling for the Nova B2B Dashboard */
.nova-b2b-dashboard-wrapper {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #333;
    background: #f9fafb;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.nova-dashboard-header {
    margin-bottom: 20px;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 10px;
}

.nova-tabs {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.nova-tab-btn {
    background: transparent;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    font-weight: 500;
    color: #6b7280;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
}

.nova-tab-btn:hover {
    color: #111827;
}

.nova-tab-btn.active {
    color: #2563eb;
    border-bottom-color: #2563eb;
}

.nova-tab-content {
    display: none;
    padding: 20px 0;
}

.nova-tab-content.active {
    display: block;
}

.nova-filters {
    margin-bottom: 20px;
}

.nova-filters input {
    padding: 10px;
    width: 100%;
    max-width: 400px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
}

.nova-catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.nova-product-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 15px;
    text-align: center;
    transition: box-shadow 0.2s;
}

.nova-product-card:hover {
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.nova-product-card img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 10px;
}

.nova-btn {
    background: #f1f5f9;
    color: #334155;
    border: 1px solid #cbd5e1;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
}

.nova-btn-primary {
    background: #2563eb;
    color: #fff;
    border-color: #2563eb;
}

.nova-btn-primary:hover {
    background: #1d4ed8;
}

.nova-table {
    width: 100%;
    border-collapse: collapse;
}

.nova-table th, .nova-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.nova-table th {
    background: #f8fafc;
    font-weight: 600;
}
