/* Custom styles for products_list page */
.btn-hover:hover {
    transform: translateY(-2px);
}

/* Scrollbar styling for table container */
.overflow-x-auto::-webkit-scrollbar {
    height: 8px;
}
.overflow-x-auto::-webkit-scrollbar-track {
    background: #f1f1f1;
}
.overflow-x-auto::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}
.overflow-x-auto::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Direction fix for specific elements */
.dir-ltr {
    direction: ltr;
}

/* Print styles */
@media print {
    body {
        background: white;
    }
    .no-print {
        display: none;
    }
    .shadow-md, .shadow-sm, .shadow-2xl {
        box-shadow: none !important;
    }
    table {
        border: 1px solid #ddd;
    }
    th, td {
        border: 1px solid #ddd;
        padding: 8px;
    }
}