/* Existing styles with enhancements */
.b2b-uploader-container {
    max-width: 800px;
    margin: 20px 0;
}

/* New notice styling */
.notice {
    padding: 15px 20px;
    border-radius: 4px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #fff8e5;
    border-left: 4px solid #dba617;
}

.notice i {
    color: #dba617;
}

/* Enhanced upload area */
.upload-area {
    border: 2px dashed #ddd;
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    background: #f9f9f9;
    border-radius: 4px;
}

.upload-area.dragover {
    border-color: #2196F3;
    background: rgba(33, 150, 243, 0.05);
}

.upload-icon {
    margin-bottom: 15px;
    color: #2196F3;
}

/* Enhanced format info */
.format-info {
    margin: 15px 0;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.format-example {
    color: #666;
    font-style: italic;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.format-note {
    color: #666;
    font-size: 0.9em;
    margin-top: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Enhanced button */
.button-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    height: auto;
}

/* Your existing table styles */
.woocommerce-orders-table {
    width: 100%;
    margin-top: 20px;
    border-collapse: collapse;
}

.woocommerce-orders-table th,
.woocommerce-orders-table td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: left;
}

.woocommerce-orders-table th {
    background: #f5f5f5;
}

/* Your existing message styles */
.woocommerce-message {
    padding: 1em 1.618em;
    margin-bottom: 2.617924em;
    background-color: #0f834d;
    color: #fff;
    border-radius: 2px;
}

.woocommerce-error {
    padding: 1em 1.618em;
    margin-bottom: 2.617924em;
    background-color: #e2401c;
    color: #fff;
    border-radius: 2px;
}

/* Your existing stock status styles */
.stock-level.out-of-stock {
    color: #dc3545;
    font-weight: bold;
}

.stock-level.in-stock {
    color: #28a745;
}

tr.out-of-stock {
    background-color: rgba(220, 53, 69, 0.1);
}

/* Enhanced order history section */
.order-history {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
}

.order-history h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

/* Your existing order details styles */
.b2b-order-details {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.order-info {
    background: #f8f8f8;
    padding: 15px;
    margin: 20px 0;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* Maintain all your existing table styles */
.order-items-table {
    width: 100%;
    margin: 10px 0;
    border-collapse: collapse;
    background: #f8f8f8;
}

.order-items-table th,
.order-items-table td {
    padding: 8px;
    border: 1px solid #ddd;
    text-align: left;
}

.order-items-table th {
    background: #f0f0f0;
    font-weight: bold;
}

/* Responsive enhancements */
@media (max-width: 768px) {
    .b2b-uploader-container {
        padding: 10px;
    }

    .woocommerce-orders-table {
        display: block;
        overflow-x: auto;
    }
}