/* assets/ag-grid-orders.css */

/* Custom styles for order management grids */
.ag-theme-alpine {
    --ag-header-background-color: #f8f9fa;
    --ag-odd-row-background-color: #fafbfc;
}

/* Master detail styles */
.ag-details-row {
    background-color: #f8f9fa !important;
}

.ag-details-row .ag-row {
    background-color: transparent !important;
}

/* Ensure detail rows maintain their height */
.ag-details-row .ag-cell {
    padding: 0 !important;
}

/* Prevent master detail issues */
.ag-full-width-row {
    width: 100% !important;
}

.ag-details-row .ag-cell {
    padding: 0 !important;
}

/* Flash animations for order status */
.flash-green {
    animation: flash-green 2s ease-in-out;
}

.flash-yellow {
    animation: flash-yellow 2s ease-in-out;
}

.flash-red {
    animation: flash-red 2s ease-in-out;
}