32 lines
540 B
CSS
32 lines
540 B
CSS
/* Products page specific styles */
|
|
.products-table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
background: white;
|
|
border-radius: 6px;
|
|
}
|
|
|
|
.products-table thead tr {
|
|
background: #f8f9fa;
|
|
border-bottom: 2px solid #dee2e6;
|
|
}
|
|
|
|
.products-table th {
|
|
padding: 10px;
|
|
text-align: left;
|
|
font-weight: 600;
|
|
color: #333;
|
|
font-size: 0.9em;
|
|
}
|
|
|
|
.products-table td {
|
|
padding: 8px 10px;
|
|
font-size: 0.85em;
|
|
border-bottom: 1px solid #e0e0e0;
|
|
}
|
|
|
|
.products-table tbody tr:hover {
|
|
background: #f8f9fa;
|
|
}
|
|
|