/* Options Manager - Storefront Styles */

.quote-request-container {
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 15px;
    margin: 15px 0;
}

.quote-request-container h3 {
    margin-top: 0;
    color: #333;
}

/* RFQ List */
.quote-list-item {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 15px;
    margin-bottom: 15px;
    transition: box-shadow 0.3s;
}

.quote-list-item:hover {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.quote-status-badge {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: bold;
    margin: 0 5px 5px 0;
}

.quote-status-badge.draft {
    background-color: #f0f0f0;
    color: #666;
}

.quote-status-badge.submitted {
    background-color: #d1ecf1;
    color: #0c5460;
}

.quote-status-badge.pending {
    background-color: #fff3cd;
    color: #856404;
}

.quote-status-badge.quoted {
    background-color: #cfe2ff;
    color: #084298;
}

.quote-status-badge.accepted {
    background-color: #d1e7dd;
    color: #0f5132;
}

.quote-status-badge.rejected {
    background-color: #f8d7da;
    color: #842029;
}

.quote-status-badge.expired {
    background-color: #e2e3e5;
    color: #383d41;
}

/* Blocked item notice */
.item-blocked-notice {
    background-color: #f8d7da;
    border-left: 4px solid #dc3545;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 3px;
    color: #721c24;
}

.item-blocked-notice i {
    margin-right: 8px;
}

/* Request quote button */
.btn-request-quote {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-request-quote:hover {
    background-color: #0056b3;
    color: white;
    text-decoration: none;
}

/* Price display */
.price-display {
    font-size: 18px;
    font-weight: bold;
    color: #28a745;
    margin: 10px 0;
}

.exact-price {
    background-color: #e7f3ff;
    padding: 5px 10px;
    border-radius: 3px;
    border-left: 3px solid #007bff;
}

/* Quote table */
.quote-table {
    width: 100%;
    margin: 15px 0;
    border-collapse: collapse;
}

.quote-table th,
.quote-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.quote-table th {
    background-color: #f9f9f9;
    font-weight: bold;
}

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

/* Alert styles */
.alert-blocked {
    background-color: #f8d7da;
    color: #721c24;
    padding: 12px;
    border-radius: 4px;
    margin-bottom: 15px;
    border-left: 4px solid #dc3545;
}

.alert-success {
    background-color: #d1e7dd;
    color: #0f5132;
    padding: 12px;
    border-radius: 4px;
    margin-bottom: 15px;
    border-left: 4px solid #198754;
}

.alert-info {
    background-color: #cfe2ff;
    color: #084298;
    padding: 12px;
    border-radius: 4px;
    margin-bottom: 15px;
    border-left: 4px solid #0d6efd;
}

/* My Quotes page */
.my-quotes-container {
    margin: 20px 0;
}

.quote-item-summary {
    background-color: white;
    border: 1px solid #ddd;
    padding: 10px;
    margin: 5px 0;
    border-radius: 3px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Quote detail page */
.quote-detail-header {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.quote-detail-header h2 {
    margin-top: 0;
}

.quote-detail-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.quote-detail-row:last-child {
    border-bottom: none;
}

.quote-detail-label {
    font-weight: bold;
    color: #666;
}

.quote-detail-value {
    color: #333;
}

/* Responsive */
@media (max-width: 768px) {
    .quote-list-item {
        padding: 10px;
    }

    .quote-table th,
    .quote-table td {
        padding: 8px;
        font-size: 14px;
    }

    .quote-detail-row {
        flex-direction: column;
    }

    .quote-status-badge {
        display: block;
        margin-bottom: 5px;
    }
}
