.rfq-status-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: "Barlow Condensed", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-weight: 400;
    line-height: 1.6;
}

.rfq-status-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e1e5e9;
}

.rfq-status-header h2 {
    margin: 0;
    color: #2c3e50;
    font-size: 28px;
    font-weight: 600;
    font-family: "Barlow Condensed", sans-serif;
}

.rfq-status-badge {
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: "Barlow Condensed", sans-serif;
}

.rfq-status-pending_review { background: #fff3cd; color: #856404; }
.rfq-status-under_review { background: #d1ecf1; color: #0c5460; }
.rfq-status-quote_provided { background: #d4edda; color: #155724; }
.rfq-status-negotiating { background: #f8d7da; color: #721c24; }
.rfq-status-closed { background: #e2e3e5; color: #383d41; }

.rfq-status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.rfq-status-section {
    background: #ffffff;
    border: 1px solid #e1e5e9;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.rfq-status-section h3 {
    margin: 0 0 20px 0;
    color: #2c3e50;
    font-size: 18px;
    font-weight: 600;
    padding-bottom: 10px;
    border-bottom: 1px solid #e1e5e9;
    font-family: "Barlow Condensed", sans-serif;
}

.rfq-field {
    display: flex;
    margin-bottom: 15px;
    align-items: flex-start;
}

.rfq-field label {
    min-width: 140px;
    font-weight: 600;
    color: #6c757d;
    margin-right: 15px;
    padding-top: 2px;
    font-family: "Barlow Condensed", sans-serif;
}

.rfq-field span {
    color: #2c3e50;
    flex: 1;
    line-height: 1.5;
    font-family: "Barlow Condensed", sans-serif;
}

.rfq-field-full {
    flex-direction: column;
}

.rfq-field-full label {
    margin-bottom: 8px;
    min-width: auto;
}

.rfq-status-footer {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    color: #6c757d;
    font-style: italic;
    font-family: "Barlow Condensed", sans-serif;
}

.rfq-status-error {
    text-align: center;
    padding: 40px 20px;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    border-radius: 8px;
    font-size: 16px;
    font-family: "Barlow Condensed", sans-serif;
}

/* Admin styles */
.rfq-admin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.rfq-admin-section {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 5px;
}

.rfq-admin-section h4 {
    margin-top: 0;
    color: #23282d;
    font-family: "Barlow Condensed", sans-serif;
}

/* Responsive */
@media (max-width: 768px) {
    .rfq-status-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .rfq-status-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .rfq-field {
        flex-direction: column;
    }
    
    .rfq-field label {
        min-width: auto;
        margin-bottom: 5px;
    }
}