/* Copyright (C) 2025 Technology Xchange Solutions  <txscorp.com>
 * Author      Seth Rickert    <srickert@txscorp.com>
 * \file       qualitycontrol/css/qualitycontrol.css
 * \ingroup    qualitycontrol
 * \brief      CSS styles for Quality Control module
 */

/* Main QC Container */
.qc-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* QC Header */
.qc-header {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.qc-header h1 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.qc-header .order-info {
    display: flex;
    gap: 30px;
    margin-top: 15px;
}

.qc-header .order-info div {
    flex: 1;
}

.qc-header .order-info strong {
    color: #495057;
}

/* QC Status Badges */
.qc-badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.qc-badge.status-draft {
    background-color: #6c757d;
    color: white;
}

.qc-badge.status-in-progress {
    background-color: #ffc107;
    color: #212529;
}

.qc-badge.status-tech-complete {
    background-color: #17a2b8;
    color: white;
}

.qc-badge.status-final-complete {
    background-color: #28a745;
    color: white;
}

.qc-badge.status-failed {
    background-color: #dc3545;
    color: white;
}

.qc-badge.qc-pass {
    background-color: #28a745;
    color: white;
}

.qc-badge.qc-fail {
    background-color: #dc3545;
    color: white;
}

.qc-badge.qc-pending {
    background-color: #6c757d;
    color: white;
}

.qc-badge.qc-photo-required {
    background-color: #fd7e14;
    color: white;
}

/* QC Stats Dashboard */
.qc-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.qc-stat-card {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.qc-stat-card h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 18px;
}

.qc-stat-card .stat-value {
    font-size: 2.5em;
    font-weight: bold;
    color: #495057;
    margin-bottom: 10px;
}

.qc-stat-card .stat-label {
    color: #6c757d;
    font-size: 14px;
}

.qc-stat-card.stat-success .stat-value {
    color: #28a745;
}

.qc-stat-card.stat-warning .stat-value {
    color: #ffc107;
}

.qc-stat-card.stat-danger .stat-value {
    color: #dc3545;
}

.qc-stat-card.stat-info .stat-value {
    color: #17a2b8;
}

/* QC Barcode Items Table */
.qc-items-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

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

.qc-items-table th {
    background-color: #f8f9fa;
    color: #495057;
    font-weight: 600;
}

.qc-items-table tr:hover {
    background-color: #f8f9fa;
}

.qc-items-table .barcode-cell {
    font-family: monospace;
    font-weight: bold;
    color: #007bff;
}

.qc-items-table .product-cell {
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.qc-items-table .qc-actions {
    white-space: nowrap;
}

.qc-items-table .qc-actions .btn {
    margin-right: 5px;
    padding: 4px 8px;
    font-size: 12px;
}

/* QC Action Buttons */
.qc-action-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.qc-action-buttons .btn {
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.qc-action-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.qc-action-buttons .btn-pass {
    background-color: #28a745;
    color: white;
    border: none;
}

.qc-action-buttons .btn-fail {
    background-color: #dc3545;
    color: white;
    border: none;
}

.qc-action-buttons .btn-bulk {
    background-color: #17a2b8;
    color: white;
    border: none;
}

.qc-action-buttons .btn-photo {
    background-color: #fd7e14;
    color: white;
    border: none;
}

.qc-action-buttons .btn-print {
    background-color: #6f42c1;
    color: white;
    border: none;
}

/* QC Form Sections */
.qc-form-section {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.qc-form-section h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    border-bottom: 2px solid #dee2e6;
    padding-bottom: 10px;
}

.qc-form-group {
    margin-bottom: 15px;
}

.qc-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #495057;
}

.qc-form-group input,
.qc-form-group select,
.qc-form-group textarea {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 14px;
}

.qc-form-group input:focus,
.qc-form-group select:focus,
.qc-form-group textarea:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.qc-form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.qc-form-group .required {
    color: #dc3545;
}

/* Photo Capture */
.qc-photo-capture {
    border: 2px dashed #dee2e6;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
}

.qc-photo-capture.active {
    border-color: #007bff;
    background-color: #f8f9fa;
}

.qc-photo-capture .photo-preview {
    max-width: 300px;
    max-height: 200px;
    border-radius: 4px;
    margin: 10px auto;
    display: block;
}

.qc-photo-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.qc-photo-item {
    position: relative;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    overflow: hidden;
}

.qc-photo-item img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.qc-photo-item .photo-actions {
    position: absolute;
    top: 5px;
    right: 5px;
    display: flex;
    gap: 5px;
}

.qc-photo-item .photo-actions .btn {
    padding: 2px 6px;
    font-size: 10px;
    border-radius: 3px;
}

/* Bulk Selection */
.qc-bulk-selection {
    background: #e9ecef;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
}

.qc-bulk-selection h4 {
    color: #495057;
    margin-bottom: 10px;
}

.qc-bulk-selection .bulk-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.qc-bulk-selection .bulk-info {
    color: #6c757d;
    font-size: 14px;
    margin-left: auto;
}

/* QC History */
.qc-history {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 20px;
}

.qc-history h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.qc-history-item {
    border-left: 4px solid #007bff;
    padding-left: 15px;
    margin-bottom: 15px;
    position: relative;
}

.qc-history-item:last-child {
    margin-bottom: 0;
}

.qc-history-item .timestamp {
    font-size: 12px;
    color: #6c757d;
    margin-bottom: 5px;
}

.qc-history-item .user {
    font-weight: 500;
    color: #495057;
}

.qc-history-item .action {
    color: #2c3e50;
    margin-bottom: 5px;
}

.qc-history-item .notes {
    color: #6c757d;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .qc-container {
        padding: 10px;
    }
    
    .qc-header .order-info {
        flex-direction: column;
        gap: 15px;
    }
    
    .qc-stats {
        grid-template-columns: 1fr;
    }
    
    .qc-action-buttons {
        flex-direction: column;
    }
    
    .qc-items-table {
        font-size: 12px;
    }
    
    .qc-items-table .product-cell {
        max-width: 150px;
    }
    
    .qc-photo-list {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
}

/* Print Styles */
@media print {
    .qc-action-buttons,
    .qc-form-section,
    .qc-photo-capture {
        display: none !important;
    }
    
    .qc-items-table {
        font-size: 12px;
    }
    
    .qc-header {
        background: transparent !important;
        border: 1px solid #000 !important;
    }
}

/* Loading States */
.qc-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    color: #6c757d;
}

.qc-loading::before {
    content: "";
    width: 20px;
    height: 20px;
    border: 2px solid #dee2e6;
    border-top: 2px solid #007bff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* QC Workflow Status Indicators */
.qc-workflow-status {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.qc-workflow-step {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    border-radius: 6px;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
}

.qc-workflow-step.active {
    background: #007bff;
    color: white;
    border-color: #007bff;
}

.qc-workflow-step.completed {
    background: #28a745;
    color: white;
    border-color: #28a745;
}

.qc-workflow-step .step-number {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #dee2e6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.qc-workflow-step.active .step-number {
    background: white;
    color: #007bff;
}

.qc-workflow-step.completed .step-number {
    background: white;
    color: #28a745;
}

/* Error States */
.qc-error {
    background: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 6px;
    border: 1px solid #f5c6cb;
    margin-bottom: 20px;
}

.qc-warning {
    background: #fff3cd;
    color: #856404;
    padding: 15px;
    border-radius: 6px;
    border: 1px solid #ffeaa7;
    margin-bottom: 20px;
}

.qc-success {
    background: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 6px;
    border: 1px solid #c3e6cb;
    margin-bottom: 20px;
}

.qc-info {
    background: #d1ecf1;
    color: #0c5460;
    padding: 15px;
    border-radius: 6px;
    border: 1px solid #bee5eb;
    margin-bottom: 20px;
}

/* Dashboard Styles */
.qc-stats-section {
    margin: 30px 0;
}

.qc-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 20px;
}

.qc-stat-group h3 {
    color: #495057;
    margin-bottom: 15px;
    font-size: 1.2em;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 8px;
}

.qc-stat-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.qc-activity-section {
    margin: 30px 0;
}

.activity-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 20px;
}

.activity-column h3 {
    color: #495057;
    margin-bottom: 15px;
    font-size: 1.1em;
}

.qc-activity-list {
    max-height: 400px;
    overflow-y: auto;
}

.qc-activity-item {
    padding: 12px;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    margin-bottom: 8px;
    background: #f8f9fa;
}

.activity-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.activity-ref {
    font-weight: bold;
    color: #495057;
}

.activity-time {
    font-size: 0.9em;
    color: #6c757d;
}

.activity-details {
    display: flex;
    gap: 10px;
    align-items: center;
}

.activity-customer, .activity-supplier {
    font-size: 0.9em;
    color: #6c757d;
}

/* Pending Items Section */
.qc-pending-section {
    margin: 30px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.qc-pending-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.qc-pending-card {
    display: flex;
    align-items: center;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.pending-icon {
    margin-right: 20px;
    color: #007bff;
}

.pending-content {
    flex: 1;
}

.pending-count {
    font-size: 2em;
    font-weight: bold;
    color: #495057;
    line-height: 1;
}

.pending-label {
    color: #6c757d;
    margin: 5px 0;
}

.pending-action {
    display: inline-block;
    margin-top: 8px;
    padding: 6px 12px;
    background: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9em;
}

.pending-action:hover {
    background: #0056b3;
    color: white;
}

/* Scan Interface Styles */
.qc-instructions {
    background: #e7f3ff;
    border: 1px solid #b8daff;
    border-radius: 6px;
    padding: 20px;
    margin-bottom: 30px;
}

.qc-instructions h3 {
    color: #004085;
    margin-bottom: 15px;
}

.qc-instructions ul {
    margin: 0;
    padding-left: 20px;
}

.qc-instructions li {
    margin-bottom: 8px;
    color: #004085;
}

.qc-scan-form {
    background: white;
    border: 2px solid #007bff;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
    text-align: center;
}

.qc-scan-input, .qc-barcode-input {
    font-size: 1.5em !important;
    padding: 15px !important;
    text-align: center;
    border: 2px solid #007bff !important;
    border-radius: 6px !important;
    width: 100% !important;
    max-width: 400px;
    margin: 10px auto !important;
    display: block !important;
}

.qc-scan-input:focus, .qc-barcode-input:focus {
    border-color: #0056b3 !important;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,0.25) !important;
}

.qc-scan-button {
    font-size: 1.2em !important;
    padding: 12px 30px !important;
    background: #28a745 !important;
    border: none !important;
    color: white !important;
    border-radius: 6px !important;
    margin-top: 20px !important;
}

.qc-scan-button:hover {
    background: #218838 !important;
}

/* Processing Interface Styles */
.qc-mode-instructions {
    margin-bottom: 30px;
}

.qc-mode-small, .qc-mode-bulk {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 6px;
    padding: 20px;
}

.qc-mode-small h3, .qc-mode-bulk h3 {
    color: #856404;
    margin-bottom: 15px;
}

.qc-mode-small p, .qc-mode-bulk p {
    color: #856404;
    margin-bottom: 10px;
}

.qc-mode-small ul, .qc-mode-bulk ul {
    margin: 0;
    padding-left: 20px;
}

.qc-mode-small li, .qc-mode-bulk li {
    color: #856404;
    margin-bottom: 5px;
}

/* Form Actions */
.qc-form-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.qc-pass-button {
    background: #28a745 !important;
    border: none !important;
    color: white !important;
    padding: 10px 20px !important;
    border-radius: 6px !important;
    font-size: 1.1em !important;
}

.qc-pass-button:hover {
    background: #218838 !important;
}

.qc-fail-button {
    background: #dc3545 !important;
    border: none !important;
    color: white !important;
    padding: 10px 20px !important;
    border-radius: 6px !important;
    font-size: 1.1em !important;
}

.qc-fail-button:hover {
    background: #c82333 !important;
}

/* Bulk Actions */
.qc-bulk-actions {
    text-align: center;
    margin: 30px 0;
}

.qc-bulk-pass-button {
    background: #17a2b8 !important;
    border: none !important;
    color: white !important;
    padding: 15px 30px !important;
    border-radius: 6px !important;
    font-size: 1.3em !important;
}

.qc-bulk-pass-button:hover {
    background: #138496 !important;
}

/* Barcode Items Table */
.qc-items-section {
    margin: 30px 0;
}

.qc-barcode-row.qc-barcode-matched {
    background-color: #d4edda !important;
    border-left: 4px solid #28a745;
}

.barcode-cell strong {
    font-family: 'Courier New', monospace;
    font-size: 1.1em;
    color: #495057;
}

/* Photo Section */
.qc-photo-section {
    margin: 30px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.qc-photo-requirements {
    margin-bottom: 20px;
}

.qc-photo-requirements .info {
    background: #d1ecf1;
    border: 1px solid #bee5eb;
    color: #0c5460;
    padding: 15px;
    border-radius: 6px;
}

.qc-photo-actions {
    text-align: center;
    margin: 20px 0;
}

.qc-photo-button {
    background: #fd7e14 !important;
    border: none !important;
    color: white !important;
    padding: 12px 25px !important;
    border-radius: 6px !important;
    font-size: 1.1em !important;
}

.qc-photo-button:hover {
    background: #e8650e !important;
}

.qc-photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.qc-photo-item {
    text-align: center;
    padding: 10px;
    background: white;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.qc-photo-thumb {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 8px;
}

.qc-photo-info {
    font-size: 0.8em;
    color: #6c757d;
}

.photo-filename {
    font-weight: bold;
    margin-bottom: 2px;
}

/* Completion Section */
.qc-completion-section {
    margin: 30px 0;
    padding: 20px;
    background: #e8f5e8;
    border: 1px solid #c3e6c3;
    border-radius: 8px;
}

.qc-complete-actions {
    text-align: center;
    margin-top: 20px;
}

.qc-complete-actions .butAction {
    background: #28a745 !important;
    border: none !important;
    color: white !important;
    padding: 15px 30px !important;
    border-radius: 6px !important;
    font-size: 1.2em !important;
    text-decoration: none !important;
}

.qc-complete-actions .butAction:hover {
    background: #218838 !important;
}

/* Scan Results */
.qc-scan-results {
    margin: 30px 0;
}

.qc-result-section {
    margin-bottom: 25px;
}

.qc-result-section h4 {
    color: #495057;
    margin-bottom: 15px;
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 5px;
}

.qc-barcode-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.qc-barcode-item {
    background: #007bff;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
}

/* Recent Records */
.qc-recent-section {
    margin: 30px 0;
}

/* Error Display */
.qc-errors {
    margin-bottom: 20px;
}

.qc-errors .error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 10px;
}

/* QC Header Enhanced */
.qc-header-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.qc-header-info h2 {
    margin: 0;
    color: #495057;
}

.qc-status {
    font-size: 1.1em;
}

/* Badge Enhancements */
.qc-badge.qc-small {
    background: #17a2b8;
    color: white;
}

.qc-badge.qc-bulk {
    background: #6f42c1;
    color: white;
}

.qc-badge.qc-bestbuy {
    background: #fd7e14;
    color: white;
}

.qc-badge.qc-type-finished_goods {
    background: #28a745;
    color: white;
}

.qc-badge.qc-type-core {
    background: #007bff;
    color: white;
}

.qc-badge.qc-photo-captured {
    background: #28a745;
    color: white;
}

.qc-notes {
    font-style: italic;
    color: #6c757d;
    font-size: 0.9em;
}

/* Completion Interface Styles */
.qc-completion-summary {
    background: #e8f5e8;
    border: 2px solid #28a745;
    border-radius: 8px;
    padding: 25px;
    margin: 30px 0;
}

.qc-completion-summary h3 {
    color: #155724;
    margin-bottom: 20px;
    text-align: center;
}

.completion-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.completion-stat {
    display: flex;
    align-items: center;
    background: white;
    padding: 15px;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.stat-icon {
    margin-right: 15px;
}

.stat-content {
    flex: 1;
}

.stat-value {
    font-size: 1.5em;
    font-weight: bold;
    color: #495057;
    line-height: 1;
}

.stat-label {
    color: #6c757d;
    font-size: 0.9em;
    margin-top: 2px;
}

.completion-success {
    text-align: center;
    margin-top: 20px;
}

.completion-success .success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 15px;
    border-radius: 6px;
    font-size: 1.1em;
}

/* Validation Interface */
.qc-completion-validation {
    margin: 30px 0;
}

.validation-checklist {
    margin: 20px 0;
}

.validation-item {
    display: flex;
    align-items: center;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 10px;
}

.validation-item.validation-pass {
    background: #d4edda;
    border: 1px solid #c3e6cb;
}

.validation-item.validation-fail {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
}

.validation-icon {
    margin-right: 15px;
}

.validation-item.validation-pass .validation-icon {
    color: #28a745;
}

.validation-item.validation-fail .validation-icon {
    color: #dc3545;
}

.validation-content {
    flex: 1;
}

.validation-title {
    font-weight: bold;
    margin-bottom: 5px;
}

.validation-item.validation-pass .validation-title {
    color: #155724;
}

.validation-item.validation-fail .validation-title {
    color: #721c24;
}

.validation-detail {
    font-size: 0.9em;
}

.validation-item.validation-pass .validation-detail {
    color: #155724;
}

.validation-item.validation-fail .validation-detail {
    color: #721c24;
}

/* Completion Preview */
.completion-preview {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 20px;
    margin: 20px 0;
}

.completion-preview h4 {
    color: #495057;
    margin-bottom: 15px;
}

/* Completion Form */
.qc-completion-form {
    text-align: center;
    margin: 30px 0;
}

.completion-actions {
    margin: 20px 0;
}

.qc-complete-button {
    background: #28a745 !important;
    border: none !important;
    color: white !important;
    padding: 15px 40px !important;
    border-radius: 6px !important;
    font-size: 1.3em !important;
    font-weight: bold !important;
}

.qc-complete-button:hover {
    background: #218838 !important;
}

/* Completion Blocked */
.completion-blocked {
    text-align: center;
    margin: 30px 0;
}

.completion-blocked .warning {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    color: #856404;
    padding: 20px;
    border-radius: 6px;
    font-size: 1.1em;
}

/* Text Color Utilities */
.text-success {
    color: #28a745 !important;
}

.text-danger {
    color: #dc3545 !important;
}

.text-warning {
    color: #ffc107 !important;
}

.text-info {
    color: #17a2b8 !important;
}

.text-primary {
    color: #007bff !important;
} 