/* ==========================================================================
   FINAL CSS - WIDE LAYOUT TO MATCH THE TARGET IMAGE
   ========================================================================== */

/* --- 1. CRITICAL FIX: Theme Container Override --- */
/* This targets your theme's content area ONLY on single request pages
   and tells it to not limit our width. This stops the "squeezed" effect. */
body.single-part_request .entry-content,
body.single-part_request .site-content .container, /* Common theme class */
body.single-part_request .content-area { /* Another common theme class */
    max-width: none !important; /* Remove the theme's width limit */
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* --- 2. Overall Page Background & Our Wide Container --- */
/* Set the light grey background for the entire page body */
body.single-part_request {
    background-color: #f8f9fa;
    padding-bottom: 50px; /* THIS IS THE FIX: Adds space at the very bottom of the page */
}

/* This is OUR container. We now control the width.
   1200px is a wide, modern standard, just like your target image. */
.rsp-single-page {
    max-width: 1200px;
    margin: 3em auto;
    padding: 0 15px; /* Add some padding for smaller screens */
}

/* --- 3. Main Two-Column Grid Layout --- */
.rsp-grid-final {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 992px) {
    .rsp-grid-final {
        grid-template-columns: 2.5fr 1fr;
    }
}

/* --- 4. General "Box" Styling --- */
.rsp-box-final {
    background-color: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.03);
}

.rsp-left-col .rsp-box-final,
.rsp-right-col .rsp-box-final {
    margin-bottom: 30px;
}
@media (min-width: 992px) {
    .rsp-left-col .rsp-box-final,
    .rsp-right-col .rsp-box-final {
        margin-bottom: 0;
    }
}


/* --- 5. All other styles (they were correct before) --- */

/* Box Titles */
.rsp-box-final h3 {
    margin-top: 0;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e9ecef;
    font-size: 1.25rem;
    font-weight: 600;
    color: #212529;
}

/* Request Info List - TWO COLUMN FIX */
.rsp-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 15px;
}
.rsp-info-list li {
    display: flex; /* We still use flexbox, but without space-between */
    align-items: flex-start;
    padding: 14px 0;
    border-bottom: 1px solid #f1f3f5;
}
.rsp-info-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.rsp-info-list li strong {
    color: #6c757d;
    font-weight: 500;
    width: 140px; /* This creates the fixed-width first column */
    flex-shrink: 0; /* Prevents the column from shrinking */
    margin-right: 20px;
}
.rsp-info-list li span {
    color: #212529;
    font-weight: 500;
    line-height: 1.5;
    /* text-align: right; is no longer needed */
}

/* Parts List Table */
.rsp-parts-table-single {
    width: 100%;
    border-collapse: collapse;
}
.rsp-parts-table-single thead th {
    background-color: #f1f3f5;
    color: #495057;
    padding: 12px 15px;
    text-align: left;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.rsp-parts-table-single tbody td {
    padding: 15px;
    border-bottom: 1px solid #e9ecef;
    vertical-align: middle;
    font-size: 15px;
}
.rsp-parts-table-single .col-action {
    text-align: right;
}

/* Button Styling */
.rsp-button {
    background-color: #3b82f6;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
}
.rsp-button:hover {
    background-color: #2563eb;
}

/* Similar Requests Items */
.rsp-list-item-final {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 15px;
}
.rsp-list-item-final:last-child {
    margin-bottom: 0;
}
.rsp-list-item-final .rsp-body-final p {
    margin: 0;
    font-weight: 500;
    color: #1f2937;
    line-height: 1.4;
}
.rsp-list-item-final .rsp-body-final small {
    font-size: 13px;
    color: #6b7280;
}

/* Right Column */
.rsp-right-col .rsp-box-final {
    text-align: center;
}
.rsp-right-col .rsp-box-final p {
    color: #6c757d;
    margin-bottom: 20px;
}
.rsp-right-col .rsp-button {
    width: 100%;
}

/* Add a bullet point style to the list items for clarity */
.rsp-requester-dashboard .rsp-winning-quote-details li::before {
    content: "•";
    color: #4ade80; /* Green bullet point */
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}
/*
 * Quote Status Styles (NEW)
 * -------------------------------------------------- */

.quote-status-container {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #f1f3f5;
}

.quote-status-badge {
    display: inline-block;
    padding: 5px 12px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 20px;
    line-height: 1.5;
}

.quote-status-badge.valid {
    background-color: #eaf5ec; /* Light green */
    color: #28a745; /* Green text */
}

.quote-status-badge.expired {
    background-color: #f8d7da; /* Light red */
    color: #721c24; /* Dark red text */
}

/* Style for the whole expired quote item */
.rsp-quote-item.quote-expired {
    opacity: 0.65;
    background-color: #fafafa;
}

/* Style for disabled buttons */
.rsp-requester-dashboard .quote-item-actions .rsp-button:disabled {
    background-color: #adb5bd;
    border-color: #adb5bd;
    cursor: not-allowed;
    opacity: 0.8;
}

.rsp-requester-dashboard .quote-item-actions .rsp-button:disabled:hover {
    background-color: #adb5bd; /* Prevent hover effect on disabled button */
}
/*
 ==========================================================================
   NEW: Quote Expiry Status Styles (Append to rsp-single.css)
 ==========================================================================
*/

/* 1. Container for the status badge inside the quote item body */
.rsp-requester-dashboard .quote-item-body .quote-status-container {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #f1f3f5; /* A light separator line */
}

/* 2. Base styling for both valid and expired badges */
.rsp-requester-dashboard .quote-status-badge {
    display: inline-block;
    padding: 5px 12px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 20px;
    line-height: 1.5;
    letter-spacing: 0.3px;
}

/* 3. Style for the GREEN "Valid" badge */
.rsp-requester-dashboard .quote-status-badge.valid {
    background-color: #eaf5ec;
    color: #28a745;
}

/* 4. Style for the RED "Expired" badge */
.rsp-requester-dashboard .quote-status-badge.expired {
    background-color: #f8d7da;
    color: #721c24;
}

/* 5. Fade out the ENTIRE quote item when it is expired */
.rsp-requester-dashboard .rsp-quote-item.quote-expired {
    opacity: 0.65;
    background-color: #fafafa;
    transition: opacity 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

/* 6. CRITICAL: Style for the disabled "Accept Offer" button */
.rsp-requester-dashboard .rsp-button:disabled,
.rsp-requester-dashboard .rsp-button:disabled:hover {
    background-color: #adb5bd !important; /* Use !important to override existing button styles if needed */
    border-color: #adb5bd !important;
    cursor: not-allowed;
    color: #ffffff !important;
    opacity: 0.8;
}
/*
 ==========================================================================
   NEW: Post-Acceptance Messaging (Comments) Styles
 ==========================================================================
*/

/* Main container for the whole communication section */
.rsp-order-communication-box {
    padding: 20px;
    border-top: 1px solid #e5e7eb;
}
.rsp-order-communication-box h5 {
    margin-top: 0;
    font-size: 1.1rem;
}

/* Style the form to add a new message */
.comment-respond {
    margin-top: 20px;
    padding: 20px;
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
}
.comment-respond .comment-reply-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
}
.comment-respond .comment-form-comment textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.comment-respond .form-submit .submit {
    /* Use your plugin's button styles */
    background-color: #3b82f6;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
}
.comment-respond .form-submit .submit:hover {
    background-color: #2563eb;
}

/* Style the list of existing messages */
.rsp-comment-list {
    margin-top: 20px;
}
.rsp-comment-list .comment-body {
    padding: 15px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 15px;
    position: relative;
}
.rsp-comment-list .comment-author .fn {
    font-weight: bold;
    font-style: normal;
}
.rsp-comment-list .comment-meta {
    font-size: 12px;
    color: #6c757d;
    margin-bottom: 10px;
}
.rsp-comment-list .comment-content p {
    margin: 0;
    line-height: 1.6;
}
.rsp-comment-list .reply {
    font-size: 12px;
    margin-top: 10px;
}

/* Hide unnecessary fields from comment form */
.comment-form-author, .comment-form-email, .comment-form-url, .logged-in-as {
    display: none;
}
/* Enables smooth scrolling on the entire site when an anchor link is clicked */
html {
  scroll-behavior: smooth;
}

.rsp-parts-table-single tr:target {
  background-color: #fff8e1 !important;
  border: 1px solid #fdd835;
  transition: background-color 0.5s ease-in-out;
}
.comment-reply-link, .comment-edit-link { display: none !important; }
.rsp-load-older-wrapper {
    text-align: center;
    padding-bottom: 1.5em;
    margin-bottom: 1.5em;
    border-bottom: 1px solid #e9ecef;
}
/*
==========================================================================
   STYLES for Similar Requests Section
==========================================================================
*/

/* --- The card container for a single similar request --- */
.rsp-professional-similar-list .rsp-request-card {
    background-color: #ffffff;
    border: 1px solid #e9e9e9;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.03);
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
}

/* --- Similar Card Header --- */
.rsp-professional-similar-list .rsp-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f0f0f0;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.rsp-professional-similar-list .rsp-header-left,
.rsp-professional-similar-list .rsp-header-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 14px;
}

.rsp-professional-similar-list .rsp-request-id {
    font-weight: 600;
    color: #111827;
}

.rsp-professional-similar-list .rsp-request-location,
.rsp-professional-similar-list .rsp-request-meta,
.rsp-professional-similar-list .rsp-request-date {
    font-weight: 600;
    color: #4b5563;
}

/* --- Similar Card Body & Parts Table --- */
.rsp-professional-similar-list .rsp-card-body {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.rsp-professional-similar-list .rsp-parts-list-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1em;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    overflow: hidden;
}

.rsp-professional-similar-list .rsp-parts-list-table thead th {
    background-color: #f8f9fa;
    padding: 0.75em;
    text-align: left;
    font-size: 12px;
    font-weight: 600;
    color: #4b5563;
    text-transform: uppercase;
    border-bottom: 1px solid #e9ecef;
}

.rsp-professional-similar-list .rsp-parts-list-table tbody tr {
    border-bottom: 1px solid #f0f0f0;
}

.rsp-professional-similar-list .rsp-parts-list-table tbody tr:last-child {
    border-bottom: none;
}

.rsp-professional-similar-list .rsp-parts-list-table td {
    padding: 0.75em;
    vertical-align: top;
    font-size: 13px;
    color: #374151;
    text-align: left;
}

/* Column Widths */
.rsp-professional-similar-list .part-brand { width: 15%; font-weight: 600; color: #111827; }
.rsp-professional-similar-list .part-model { width: 14%; }
.rsp-professional-similar-list .part-no { width: 14%; }
.rsp-professional-similar-list .part-desc { width: 24%; }
.rsp-professional-similar-list .part-condition { width: 14%; }
.rsp-professional-similar-list .part-manufacturer { width: 11%; }
.rsp-professional-similar-list .part-qty {
    width: 8%;
    text-align: right;
    font-weight: 600;
    color: #111827;
    white-space: nowrap;
}

/* --- Similar Card Footer & Buttons --- */
.rsp-professional-similar-list .rsp-card-footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-top: 1rem;
    gap: 0.75rem;
}

.rsp-professional-similar-list .rsp-button-tertiary {
    background-color: #f3f4f6 !important;
    border-color: #e5e7eb !important;
    color: #374151 !important;
}
.rsp-professional-similar-list .rsp-button-tertiary:hover {
    background-color: #e5e7eb !important;
    border-color: #d1d5db !important;
}
/*
==========================================================================
   FINAL: Professional "Offer Accepted" Deal Summary Styles
==========================================================================
*/

/* --- 1. The Main White Container --- */
.rsp-requester-dashboard .rsp-part-completed-notice {
    background-color: #ffffff;
    border: 1px solid #d1fae5;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px
 10px rgba(0,0,0,0.05);
}

/* --- 2. The "Offer Accepted!" Banner --- */
.rsp-requester-dashboard .rsp-notice-header {
    background-color: #10b981;
    color: #ffffff;
    padding: 12px 20px;
    font-size: 1.1rem;
    font-weight: 600;
}
.rsp-requester-dashboard .rsp-notice-icon { display: none; }

/* --- 3. The Two-Column Grid for Details --- */
.rsp-requester-dashboard .rsp-summary-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}
@media (min-width: 768px) {
    .rsp-requester-dashboard .rsp-summary-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.rsp-requester-dashboard .rsp-summary-section {
    padding: 25px;
}
@media (min-width: 768px) {
    .rsp-requester-dashboard .rsp-summary-section:first-child {
        border-right: 1px solid #e5e7eb;
    }
}

.rsp-requester-dashboard .rsp-summary-section h4 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1rem;
    font-weight: 600;
    color: #374151;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* --- 4. The Data List (ul/li) Styling & Hover Effect --- */
.rsp-requester-dashboard .rsp-summary-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rsp-requester-dashboard .rsp-summary-list li {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 12px 8px; /* Added padding for hover effect */
    font-size: 14px;
    border-bottom: 1px solid #f3f4f6;
    border-radius: 4px; /* Rounded corners for hover effect */
    transition: background-color 0.2s ease-in-out;
}
.rsp-requester-dashboard .rsp-summary-list li:last-child {
    border-bottom: none;
}

/* THIS IS THE HOVER EFFECT YOU REQUESTED */
.rsp-requester-dashboard .rsp-summary-list li:hover {
    background-color: #f9fafb;
}

.rsp-requester-dashboard .rsp-summary-list li strong {
    color: #6b7280;
    font-weight: 500;
    margin-right: 15px;
    white-space: nowrap;
}

.rsp-requester-dashboard .rsp-summary-list li span {
    color: #1f2937;
    font-weight: 500;
    text-align: right;
}
.rsp-requester-dashboard .rsp-summary-list li span a {
    color: #1d4ed8;
    text-decoration: none;
    font-weight: 600;
}
.rsp-requester-dashboard .rsp-summary-list li span a:hover {
    text-decoration: underline;
}

/* Special styling for the Total Price */
.rsp-requester-dashboard .rsp-summary-list li.total-price {
    font-size: 1.1rem;
    padding-top: 15px;
}
.rsp-requester-dashboard .rsp-summary-list li.total-price strong,
.rsp-requester-dashboard .rsp-summary-list li.total-price span {
    color: #059669;
    font-weight: 600;
}

/* --- 5. The Divider Line (hr) --- */
.rsp-requester-dashboard .rsp-summary-divider {
    border: 0;
    border-top: 1px solid #e5e7eb;
    margin: 15px 0;
}

/* --- 6. The Verification Warning Link --- */
.rsp-verification-notice {
    margin-top: 20px;
    padding: 15px;
    background-color: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 8px;
    text-align: center;
}
.rsp-verification-notice a {
    color: #b45309;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.rsp-verification-notice a:hover {
    text-decoration: underline;
}
.rsp-verification-notice a .dashicons {
    margin-right: 8px;
    font-size: 18px;
}

/* --- 7. The Verification Pop-Up Modal --- */
#rsp-verification-modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6); z-index: 99998;
}
#rsp-verification-modal-wrapper {
    position: fixed; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: #fff; border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    z-index: 99999; width: 95%; max-width: 600px;
    max-height: 90vh; overflow-y: auto;
}
#rsp-verification-modal-close {
    position: absolute; top: 10px; right: 15px; font-size: 28px;
    line-height: 1; color: #9ca3af; cursor: pointer;
    background: none; border: none;
}
#rsp-verification-modal-wrapper .rsp-modal-content {
    padding: 30px;
}
#rsp-verification-modal-wrapper .rsp-modal-content h3 {
    margin-top: 0;
    font-size: 1.5em;
}
#rsp-verification-modal-wrapper .rsp-modal-content p {
    line-height: 1.6;
    color: #4b5563;
}
/*
==========================================================================
   FINAL: Professional Verification Modal Styles
==========================================================================
*/

/* --- Prevents background page from scrolling when modal is open --- */
body.rsp-modal-open {
    overflow: hidden;
}

/* --- The Modal and Overlay --- */
#rsp-verification-modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6); z-index: 99998;
}
#rsp-verification-modal-wrapper {
    position: fixed; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: #fff; border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    z-index: 99999; width: 95%; max-width: 650px;
    max-height: 90vh;
}
#rsp-verification-modal-close {
    position: absolute; top: 10px; right: 15px; font-size: 28px;
    line-height: 1; color: #9ca3af; cursor: pointer;
    background: none; border: none; z-index: 10;
}
#rsp-verification-modal-close:hover {
    color: #374151;
}

/* --- Modal Content Styling --- */
#rsp-verification-modal-wrapper .rsp-modal-content {
    padding: 20px 35px 35px 35px;
    overflow-y: auto;
    max-height: 90vh; /* Ensures content is scrollable */
}
#rsp-verification-modal-wrapper .rsp-modal-content h3 {
    margin-top: 0;
    margin-bottom: 25px;
    font-size: 1.6em;
    text-align: center;
    color: #1f2937;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 15px;
}
#rsp-verification-modal-wrapper .rsp-modal-content h4 {
    margin-top: 25px;
    margin-bottom: 10px;
    font-size: 1.2em;
    color: #111827;
}
#rsp-verification-modal-wrapper .rsp-modal-content p {
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 1em;
}
#rsp-verification-modal-wrapper .rsp-modal-content a {
    color: #1d4ed8;
    font-weight: 500;
}

/* --- Styled List --- */
#rsp-verification-modal-wrapper .rsp-report-list {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
}
#rsp-verification-modal-wrapper .rsp-report-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
    color: #4b5563;
}
#rsp-verification-modal-wrapper .rsp-report-list li::before {
    content: '✔';
    position: absolute;
    left: 0;
    top: 0;
    color: #10b981;
    font-weight: 600;
}
/*
==========================================================================
--- START: Supplier Average Rating on Quote Card ---
==========================================================================
*/

.rsp-quote-details-list li.supplier-rating-display span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600 !important;
}

.rsp-quote-details-list li.supplier-rating-display .rsp-review-stars {
    color: #ffc107; /* Bright yellow for filled stars */
    font-size: 1.3em;
}

.rsp-quote-details-list li.supplier-rating-display .rsp-review-stars-empty {
    color: #e0e0e0; /* Light grey for empty stars */
    font-size: 1.3em;
}

.rsp-quote-details-list li.supplier-rating-display small {
    font-size: 12px;
    color: #6c757d;
    font-weight: 500;
}

/*
==========================================================================
--- END: Supplier Average Rating on Quote Card ---
==========================================================================
*/
/*
==========================================================================
--- START: FINAL Supplier "Quote Status" View ---
==========================================================================
*/

.rsp-supplier-quote-summary {
    padding: 25px;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    margin-bottom: 30px;
}
.rsp-supplier-quote-summary > p {
    margin-top: 0;
    font-size: 15px;
    color: #495057;
    line-height: 1.6;
}
.rsp-quote-details-grid {
    display: grid;
    /* This creates two even columns */
    grid-template-columns: 1fr 1fr;
    gap: 15px 30px;
    margin-top: 20px;
}
.rsp-quote-detail-item {
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
}
/* This makes the "Grand Total" and "Message" span both columns */
.rsp-quote-detail-item.full-width {
    grid-column: 1 / -1;
}
.rsp-quote-detail-item strong {
    display: block;
    color: #6c757d;
    font-weight: 500;
    font-size: 13px;
    margin-bottom: 4px;
    text-transform: uppercase;
}
.rsp-quote-detail-item span {
    font-weight: 600;
    color: #212937;
    font-size: 15px;
}
.rsp-quote-detail-item.total span {
    color: #007bff;
    font-size: 1.3em;
}
.rsp-quote-message-summary {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
    /* This makes the message span both columns */
    grid-column: 1 / -1;
}
.rsp-quote-message-summary strong {
    display: block;
    margin-bottom: 8px;
    color: #495057;
}
.rsp-quote-message-summary p {
    margin: 0;
    font-style: italic;
    color: #212937;
    line-height: 1.7;
    background-color: #fff;
    padding: 15px;
    border-radius: 6px;
    border: 1px solid #e9ecef;
}

/* On the status view, we don't need the last action column in the part list */
.rsp-status-view-mode .rsp-parts-list-public .part-action {
    display: none;
}
/*
==========================================================================
--- START: FINAL V2 Supplier "Quote Status" View ---
==========================================================================
*/

/* This now targets the same professional list style from the Deal Room */
.rsp-supplier-quote-summary .rsp-summary-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
}
.rsp-supplier-quote-summary .rsp-summary-list li {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 12px 8px;
    font-size: 14px;
    border-bottom: 1px solid #f3f4f6;
    border-radius: 4px;
    transition: background-color 0.2s ease-in-out;
}
.rsp-supplier-quote-summary .rsp-summary-list li:hover {
    background-color: #f9fafb;
}
.rsp-supplier-quote-summary .rsp-summary-list li strong {
    color: #6b7280;
    font-weight: 500;
    margin-right: 15px;
    white-space: nowrap;
}
.rsp-supplier-quote-summary .rsp-summary-list li span {
    color: #1f2937;
    font-weight: 500;
    text-align: right;
}
/* Special style for the Grand Total */
.rsp-supplier-quote-summary .rsp-summary-list li.total-price {
    font-size: 1.2rem;
    padding-top: 15px;
}
.rsp-supplier-quote-summary .rsp-summary-list li.total-price strong,
.rsp-supplier-quote-summary .rsp-summary-list li.total-price span {
    color: #007bff;
    font-weight: 600;
}
.rsp-supplier-quote-summary .rsp-summary-divider {
    border: 0;
    border-top: 1px solid #e5e7eb;
    margin: 15px 0;
}