.wcqb-quote-reference {
    background: #f0f8ff;
    border: 1px solid #0073aa;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.wcqb-quote-reference p {
    margin: 5px 0;
}

.wcqb-estimate-status {
    color: #28a745;
    font-weight: bold;
}

.wcqb-quote-saved-info,
.wcqb-estimate-requested {
    background: #f8f8f8;
    padding: 20px;
    border-radius: 4px;
}

.wcqb-locked {
    color: #666;
    font-style: italic;
}

.wcqb-start-new-quote {
    margin-left: 10px;
}/* File: assets/css/frontend.css */

.wcqb-add-to-quote-wrapper {
    margin: 20px 0;
    position: relative;
}

.wcqb-add-to-quote,
.wcqb-view-quote-btn {
    margin-right: 10px;
}

.wcqb-add-to-quote.loading {
    opacity: 0.6;
    cursor: wait;
}

.wcqb-view-quote-btn {
    background: #28a745;
    border-color: #28a745;
    color: #fff;
}

.wcqb-view-quote-btn:hover {
    background: #218838;
    border-color: #1e7e34;
    color: #fff;
}

.wcqb-remove-from-quote {
    background: #dc3545;
    border-color: #dc3545;
    color: #fff;
}

.wcqb-remove-from-quote:hover {
    background: #c82333;
    border-color: #bd2130;
    color: #fff;
}

.wcqb-tooltip-wrapper {
    display: inline-block;
    position: relative;
}

.wcqb-tooltip-trigger {
    color: #0073aa;
    cursor: pointer;
    text-decoration: underline;
    font-size: 14px;
}

.wcqb-tooltip-trigger:hover {
    color: #005177;
}

.wcqb-tooltip-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    width: 300px;
    z-index: 999;
    margin-top: 5px;
}

.wcqb-quote-message {
    margin-top: 10px;
    padding: 10px;
    background: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 4px;
    color: #155724;
}

.wcqb-success-message {
    font-weight: bold;
    margin-right: 10px;
}

.wcqb-view-quote {
    color: #155724;
    text-decoration: underline;
}

/* Quote Builder Page Styles */
.wcqb-quote-builder {
    max-width: 100%;
    margin: 20px 0;
}

.wcqb-quote-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.wcqb-quote-table th,
.wcqb-quote-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.wcqb-quote-table th {
    background: #f8f8f8;
    font-weight: bold;
}

.wcqb-product-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.wcqb-product-info img {
    width: 60px;
    height: 60px;
    object-fit: cover;
}

.wcqb-quote-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 30px 0;
}

.wcqb-save-quote,
.wcqb-request-quote,
.wcqb-retrieve-quote,
.wcqb-quote-info {
    background: #f8f8f8;
    padding: 20px;
    border-radius: 4px;
}

.wcqb-save-quote h3,
.wcqb-request-quote h3,
.wcqb-retrieve-quote h3,
.wcqb-quote-info h3 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #333;
}

.wcqb-quote-saved-message {
    color: #155724;
    background: #d4edda;
    padding: 10px;
    border-radius: 4px;
    border-left: 4px solid #28a745;
}

.wcqb-save-quote label,
.wcqb-retrieve-quote label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.wcqb-save-quote input,
.wcqb-retrieve-quote input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.wcqb-save-quote small,
.wcqb-retrieve-quote small {
    display: block;
    margin-top: 5px;
    color: #666;
    font-size: 12px;
}

#wcqb-save-result .success,
#wcqb-retrieve-result .success {
    color: #155724;
    background: #d4edda;
    padding: 10px;
    border-radius: 4px;
    margin-top: 10px;
}

#wcqb-save-result .error,
#wcqb-retrieve-result .error {
    color: #721c24;
    background: #f8d7da;
    padding: 10px;
    border-radius: 4px;
    margin-top: 10px;
}

.wcqb-empty-message {
    padding: 40px;
    text-align: center;
    background: #f8f8f8;
    border-radius: 4px;
    color: #666;
}

.wcqb-remove-item {
    background: #dc3545;
    color: #fff;
    border: none;
    padding: 5px 10px;
    border-radius: 3px;
    cursor: pointer;
}

.wcqb-remove-item:hover {
    background: #c82333;
}

/* Responsive Design */
@media (max-width: 768px) {
    .wcqb-quote-actions {
        grid-template-columns: 1fr;
    }
    
    .wcqb-quote-table {
        display: block;
        overflow-x: auto;
    }
    
    .wcqb-tooltip-content {
        width: 250px;
    }
    
    .wcqb-product-info {
        flex-direction: column;
        text-align: center;
    }
}