#quote-request-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 5px;
}

#product-list, #quote-items {
    margin-bottom: 20px;
}

.product-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #eee;
}

.product-sku {
    color: #888;
    margin-left: 10px;
}

#quote-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    background-color: #fff;
    border-bottom: 1px solid #eee;
}

.add-to-quote, .remove-from-quote {
    padding: 5px 10px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

.remove-from-quote {
    background-color: #f44336;
}
.quote-table {
   width: 100%;
   border-collapse: collapse;
   margin: 20px 0;
   font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
   box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.quote-table thead {
   background: #f7f9fc;
}

.quote-table th {
   padding: 15px;
   text-align: left;
   color: #2d3748;
   font-weight: 600;
   border-bottom: 2px solid #e2e8f0;
}

.quote-table td {
   padding: 12px 15px;
   border-bottom: 1px solid #e2e8f0;
   color: #4a5568;
}

.quote-table tbody tr:hover {
   background-color: #f7fafc;
}

.quote-table .remove-quote-item {
   background: #fee2e2;
   color: #dc2626;
   border: none;
   padding: 8px 16px;
   border-radius: 6px;
   cursor: pointer;
   font-size: 14px;
   transition: all 0.2s;
}

.quote-table .remove-quote-item:hover {
   background: #fecaca;
}

#cart-button {
    background: #4f46e5;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s;
}

#cart-button:hover {
    background: #4338ca;
}


#cart-button::before {
   content: '🛒';
   font-size: 1.2em;
}

#cart-count {
   background: #ef4444;
   color: white;
   padding: 2px 6px;
   border-radius: 999px;
   font-size: 0.8em;
   font-weight: bold;
}