113 lines
2.1 KiB
CSS
113 lines
2.1 KiB
CSS
.canvas-container {
|
|
font-family: Arial, sans-serif;
|
|
font-size: 13px;
|
|
margin: 20px;
|
|
}
|
|
|
|
.item-group {
|
|
margin-bottom: 20px;
|
|
border: 2px solid #1976d2;
|
|
border-radius: 5px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.item-header {
|
|
background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
|
|
padding: 15px 20px;
|
|
border-bottom: 2px solid #1976d2;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
|
|
.item-info h3 {
|
|
margin: 0;
|
|
color: #1565c0;
|
|
font-size: 10px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.item-info p {
|
|
margin: 5px 0 0 0;
|
|
color: #1976d2;
|
|
font-size: 10px;
|
|
}
|
|
|
|
#print-prNo {
|
|
margin-left: 20px;
|
|
}
|
|
|
|
.previous-price-info {
|
|
text-align: right;
|
|
color: #1565c0;
|
|
}
|
|
|
|
.previous-price-info .label {
|
|
font-size: 12px;
|
|
margin-bottom: 5px;
|
|
display: block;
|
|
}
|
|
|
|
.previous-price-info .value {
|
|
font-size: 12px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.suppliers-table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
background: white;
|
|
}
|
|
|
|
.suppliers-table thead th {
|
|
font-size: 10px; /* Reduced from 13px */
|
|
padding: 7px 5px; /* Optional: make padding smaller so it feels tighter */
|
|
}
|
|
|
|
.suppliers-table thead th {
|
|
background-color: #42a5f5;
|
|
color: white;
|
|
padding: 12px 8px;
|
|
text-align: center;
|
|
font-weight: bold;
|
|
border: 1px solid #1976d2;
|
|
font-size: 10px;
|
|
}
|
|
|
|
.suppliers-table tbody tr {
|
|
transition: background-color 0.2s ease;
|
|
}
|
|
|
|
.suppliers-table tbody tr:nth-child(even) {
|
|
background-color: #f9f9f9;
|
|
}
|
|
|
|
.suppliers-table tbody tr:hover {
|
|
background-color: #e3f2fd;
|
|
}
|
|
|
|
.suppliers-table tbody td {
|
|
padding: 10px 8px;
|
|
border: 1px solid #e0e0e0;
|
|
vertical-align: top;
|
|
}
|
|
|
|
.text-center {
|
|
text-align: center;
|
|
}
|
|
|
|
.error {
|
|
background-color: #ffebee;
|
|
color: #c62828;
|
|
padding: 15px;
|
|
border: 1px solid #ef5350;
|
|
border-radius: 4px;
|
|
margin: 20px 0;
|
|
}
|
|
|
|
#canvasContent {
|
|
overflow-x: auto;
|
|
width: 100%;
|
|
min-width: 800px;
|
|
}
|