/* ========================================
   COVER CROP MIX WIZARD
   ======================================== */

.ccm-wizard {
    max-width: 1400px;
    margin: 0 auto;
    padding: 24px;
}

.ccm-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e0e0e0;
}

.ccm-wizard-layout {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.ccm-wizard-content {
    flex: 1;
    min-width: 0;
}

/* Progress bar */
.ccm-progress-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.ccm-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
    min-width: 80px;
}

.ccm-step-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    transition: all 0.3s;
    border: 3px solid transparent;
}

.ccm-step-icon i {
    font-size: 18px;
    color: #888;
}

.ccm-step-label {
    font-size: 12px;
    color: #666;
    font-weight: 500;
    text-align: center;
}

.ccm-step.active .ccm-step-icon {
    background: #4CAF50;
    border-color: #81C784;
}

.ccm-step.active .ccm-step-icon i {
    color: white;
}

.ccm-step.active .ccm-step-label {
    color: #4CAF50;
    font-weight: 600;
}

.ccm-step.completed .ccm-step-icon {
    background: #81C784;
}

.ccm-step.completed .ccm-step-icon i {
    color: white;
}

.ccm-step-connector {
    width: 60px;
    height: 3px;
    background: #e0e0e0;
    margin: 0 8px;
    margin-bottom: 20px;
    border-radius: 2px;
}

/* Step content */
.ccm-step-content {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    margin-bottom: 20px;
}

.ccm-step-header {
    margin-bottom: 20px;
}

.ccm-step-header h2 {
    margin: 0 0 8px 0;
    font-size: 1.3rem;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ccm-step-header h2 i {
    color: #4CAF50;
}

.ccm-step-header p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

/* Step title - used in step content */
.ccm-step-title {
    margin: 0 0 8px 0;
    font-size: 1.4rem;
    color: #333;
    display: flex;
    align-items: center;
    gap: 12px;
}

.ccm-step-title i {
    color: #4CAF50;
    font-size: 1.2rem;
}

.ccm-step-subtitle {
    margin: 0 0 24px 0;
    color: #666;
    font-size: 14px;
}

/* Form grid layout */
.ccm-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.ccm-form-grid .full-width {
    grid-column: 1 / -1;
}

/* Form styles */
.ccm-form-group {
    margin-bottom: 16px;
}

.ccm-form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: #444;
    font-size: 14px;
}

.ccm-form-group input,
.ccm-form-group select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.ccm-form-group input:focus,
.ccm-form-group select:focus {
    outline: none;
    border-color: #4CAF50;
}

.ccm-form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.ccm-checkbox-group {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
}

.ccm-checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #4CAF50;
}

/* Info box */
.ccm-info-box {
    background: #E8F5E9;
    border: 1px solid #C8E6C9;
    border-radius: 8px;
    padding: 12px 16px;
    margin-top: 20px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.ccm-info-box i {
    color: #4CAF50;
    font-size: 18px;
    margin-top: 2px;
}

.ccm-info-box-content h4 {
    margin: 0 0 4px 0;
    font-size: 14px;
    color: #2E7D32;
}

.ccm-info-box-content p {
    margin: 0;
    font-size: 13px;
    color: #388E3C;
}

/* Navigation buttons */
.ccm-nav-buttons {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 20px;
}

.ccm-nav-buttons .btn-secondary,
.ccm-nav-buttons button.btn-secondary {
    background: #f5f5f5 !important;
    color: #666 !important;
    border: 1px solid #ddd !important;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}

.ccm-nav-buttons .btn-secondary:hover {
    background: #eee !important;
}

.ccm-nav-buttons .btn-primary,
.ccm-nav-buttons button.btn-primary {
    background: #4CAF50 !important;
    color: white !important;
    border: none !important;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}

.ccm-nav-buttons .btn-primary:hover {
    background: #43A047 !important;
}

/* Goals step */
.ccm-goals-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 24px;
}

.ccm-goal-selector {
    background: #fafafa;
    border-radius: 12px;
    padding: 16px 20px;
    border: 1px solid #e8e8e8;
}

.ccm-goal-selector label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #444;
    font-size: 14px;
}

.ccm-goal-selector label.required::after {
    content: '';
}

.ccm-goal-selector select,
select.ccm-goal-select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    background: white;
    cursor: pointer;
    transition: border-color 0.2s;
}

.ccm-goal-selector select:focus,
select.ccm-goal-select:focus {
    outline: none;
    border-color: #4CAF50;
}

select.ccm-goal-select.primary {
    border-left: 4px solid #4CAF50;
}

select.ccm-goal-select.secondary {
    border-left: 4px solid #81C784;
}

select.ccm-goal-select.tertiary {
    border-left: 4px solid #C8E6C9;
}

/* Info card */
.ccm-info-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 20px;
    border-radius: 12px;
    margin: 20px 0;
}

.ccm-info-card.info {
    background: #FFF8E1;
    border: 1px solid #FFE082;
}

.ccm-info-card.success {
    background: #E8F5E9;
    border: 1px solid #C8E6C9;
}

.ccm-info-card i {
    font-size: 24px;
    color: #FFA000;
    flex-shrink: 0;
}

.ccm-info-card.success i {
    color: #4CAF50;
}

.ccm-info-card.warning {
    background: #FFF3E0;
    border: 1px solid #FFCC80;
}

.ccm-info-card.warning i {
    color: #F57C00;
}

.ccm-info-card strong {
    display: block;
    margin-bottom: 4px;
    color: #333;
}

.ccm-info-card p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

/* Goals explanation */
.ccm-goals-explanation {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #e8e8e8;
}

.ccm-goals-explanation h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 16px 0;
    font-size: 1rem;
    color: #555;
}

.ccm-goals-explanation h3 i {
    color: #4CAF50;
}

.ccm-goals-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
}

.ccm-goal-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: white;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    font-size: 14px;
    color: #444;
    transition: all 0.2s;
}

.ccm-goal-card:hover {
    border-color: #4CAF50;
    background: #f8fff8;
}

.ccm-goal-card i {
    color: #4CAF50;
    font-size: 16px;
    width: 20px;
    text-align: center;
}

/* Goals progress */
.ccm-goals-progress {
    margin-top: 24px;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
}

.ccm-goals-progress h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 16px 0;
    font-size: 1rem;
    color: #333;
}

.ccm-goals-progress h3 i {
    color: #4CAF50;
}

.ccm-goals-progress h4 {
    margin: 0 0 16px 0;
    font-size: 14px;
    color: #666;
}

.ccm-goal-bar {
    margin-bottom: 16px;
}

.ccm-goal-bar-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
    font-size: 13px;
    color: #555;
}

.ccm-goal-bar-track {
    height: 10px;
    background: #e0e0e0;
    border-radius: 5px;
    overflow: hidden;
}

.ccm-goal-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #4CAF50, #81C784);
    border-radius: 5px;
    transition: width 0.4s ease-out;
}

/* Species step */
.ccm-species-step {
    /* Container for species step */
}

.ccm-species-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

/* AutoAdjust toggle */
.ccm-auto-adjust {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #555;
}

.ccm-auto-adjust i {
    color: #999;
    cursor: help;
}

.ccm-toggle {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
}

.ccm-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.ccm-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 24px;
}

.ccm-toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

.ccm-toggle input:checked + .ccm-toggle-slider {
    background-color: #4CAF50;
}

.ccm-toggle input:checked + .ccm-toggle-slider:before {
    transform: translateX(20px);
}

/* Mix Indicators */
.ccm-mix-indicators {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
}

.ccm-mix-indicators .ccm-indicator {
    margin-bottom: 20px;
}

.ccm-mix-indicators .ccm-indicator:last-child {
    margin-bottom: 0;
}

.ccm-indicator-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #555;
}

.ccm-indicator-value {
    font-weight: 700;
    color: #333;
}

.ccm-indicator-value.low {
    color: #f57c00;
}

.ccm-indicator-value.high {
    color: #e53935;
}

.ccm-indicator-value.ok {
    color: #43a047;
}

/* C:N Ratio Bar */
.ccm-cn-bar {
    position: relative;
    height: 12px;
    border-radius: 6px;
    overflow: visible;
}

.ccm-cn-gradient {
    height: 100%;
    border-radius: 6px;
    background: linear-gradient(90deg, #81C784 0%, #FFF176 50%, #FF8A65 100%);
}

.ccm-cn-marker {
    position: absolute;
    top: -4px;
    width: 4px;
    height: 20px;
    background: #333;
    border-radius: 2px;
    transform: translateX(-50%);
    box-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.ccm-cn-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 6px;
    font-size: 11px;
    color: #888;
}

/* Full Rate Bar */
.ccm-fullrate-bar {
    position: relative;
    height: 12px;
    background: #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
}

.ccm-fullrate-fill {
    height: 100%;
    background: linear-gradient(90deg, #4CAF50, #81C784);
    border-radius: 6px;
    transition: width 0.3s ease;
}

.ccm-fullrate-target {
    position: absolute;
    top: 0;
    height: 100%;
    background: rgba(76, 175, 80, 0.2);
    border-left: 2px dashed #4CAF50;
    border-right: 2px dashed #4CAF50;
}

.ccm-fullrate-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 6px;
    font-size: 11px;
    color: #888;
}

/* Stats Row */
.ccm-stats-row {
    display: flex;
    gap: 24px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #e0e0e0;
}

.ccm-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ccm-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4CAF50;
}

.ccm-stat-label {
    font-size: 12px;
    color: #888;
    margin-top: 2px;
}

/* Species Actions */
.ccm-species-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.ccm-species-actions button,
.ccm-species-actions .btn {
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
    border: none;
}

.ccm-species-actions .btn-primary {
    background: #4CAF50;
    color: white;
}

.ccm-species-actions .btn-primary:hover {
    background: #43a047;
}

.ccm-species-actions .btn-secondary {
    background: #f5f5f5;
    border: 1px solid #ddd;
    color: #666;
}

.ccm-species-actions .btn-secondary:hover {
    background: #eee;
}

.ccm-species-actions .btn-outline {
    background: white;
    border: 1px solid #4CAF50;
    color: #4CAF50;
}

.ccm-species-actions .btn-outline:hover {
    background: #E8F5E9;
}

/* Empty Species State */
.ccm-empty-species {
    text-align: center;
    padding: 48px 24px;
    background: #fafafa;
    border: 2px dashed #e0e0e0;
    border-radius: 12px;
}

.ccm-empty-species i {
    font-size: 3rem;
    color: #81C784;
    margin-bottom: 16px;
}

.ccm-empty-species h3 {
    margin: 0 0 8px 0;
    font-size: 1.2rem;
    color: #333;
}

.ccm-empty-species p {
    margin: 0;
    color: #666;
    font-size: 14px;
    max-width: 400px;
    margin: 0 auto;
}

/* Species table */
.ccm-species-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 16px;
}

.ccm-species-table th {
    text-align: left;
    padding: 12px;
    background: #f5f5f5;
    font-weight: 600;
    font-size: 13px;
    color: #666;
    border-bottom: 2px solid #e0e0e0;
}

.ccm-species-table td {
    padding: 12px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

.ccm-species-table tr:hover {
    background: #fafafa;
}

.ccm-species-table input {
    width: 80px;
    padding: 6px 8px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
}

.ccm-species-table .btn-remove {
    background: none;
    border: none;
    color: #e57373;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.2s;
}

.ccm-species-table .btn-remove:hover {
    background: #ffebee;
    color: #c62828;
}

/* Species table container */
.ccm-species-table-container {
    overflow-x: auto;
    margin-top: 16px;
}

/* Group rows */
.ccm-species-table .group-row td {
    background: #f5f5f5;
    font-weight: 600;
    color: #555;
    padding-top: 16px;
    padding-bottom: 8px;
}

.ccm-species-table .group-row i {
    margin-right: 8px;
    color: #4CAF50;
}

/* Checkbox in form */
.ccm-checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: #444;
}

.ccm-checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #4CAF50;
}

/* Species picker modal */
.ccm-species-picker {
    max-height: 60vh;
    overflow-y: auto;
}

.ccm-species-filters {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #eee;
}

.ccm-species-filters select,
.ccm-species-filters input {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 13px;
}

.ccm-species-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 12px;
}

.ccm-species-card {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 12px;
    cursor: pointer;
    transition: all 0.2s;
    background: white;
}

.ccm-species-card:hover {
    border-color: #4CAF50;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.15);
}

.ccm-species-card.selected {
    border-color: #4CAF50;
    background: #E8F5E9;
}

.ccm-species-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.ccm-species-name {
    font-weight: 600;
    color: #333;
}

.ccm-species-latin {
    font-size: 12px;
    color: #888;
    font-style: italic;
}

.ccm-species-badge {
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 12px;
    font-weight: 500;
}

.ccm-species-badge.excellent {
    background: #C8E6C9;
    color: #2E7D32;
}

.ccm-species-badge.good {
    background: #DCEDC8;
    color: #558B2F;
}

.ccm-species-badge.marginal {
    background: #FFF9C4;
    color: #F9A825;
}

.ccm-species-badge.risky {
    background: #FFCDD2;
    color: #C62828;
}

.ccm-species-stats {
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: #666;
    margin-top: 8px;
}

/* Indicators */
.ccm-indicators {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.ccm-indicator {
    background: #fafafa;
    border-radius: 8px;
    padding: 12px;
}

.ccm-indicator-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 13px;
    color: #666;
}

.ccm-indicator-bar {
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.ccm-indicator-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 0.3s;
}

.ccm-indicator-fill.green {
    background: linear-gradient(90deg, #4CAF50, #81C784);
}

.ccm-indicator-fill.amber {
    background: linear-gradient(90deg, #FFC107, #FFD54F);
}

.ccm-indicator-fill.red {
    background: linear-gradient(90deg, #f44336, #ef5350);
}

/* Sidebar */
.ccm-sidebar {
    width: 320px;
    flex-shrink: 0;
    position: sticky;
    top: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    overflow: hidden;
    border: 1px solid #e8e8e8;
}

.ccm-sidebar > h3 {
    margin: 0;
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    color: white;
}

.ccm-sidebar > h3 i {
    font-size: 18px;
}

.ccm-sidebar-content {
    padding: 16px 20px;
}

.ccm-sidebar-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 1px solid #f5f5f5;
}

.ccm-sidebar-row:last-child {
    border-bottom: none;
}

.ccm-sidebar-row span {
    color: #666;
}

.ccm-sidebar-row strong {
    color: #333;
    font-weight: 600;
}

.ccm-sidebar-row.total {
    font-size: 15px;
}

.ccm-sidebar-row.total strong {
    color: #4CAF50;
    font-weight: 700;
}

.ccm-sidebar hr {
    border: none;
    height: 1px;
    background: #e8e8e8;
    margin: 8px 0;
}

/* Old sidebar classes (for backwards compatibility) */
.ccm-sidebar-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    overflow: hidden;
    border: 1px solid #e8e8e8;
}

.ccm-sidebar-header {
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    color: white;
    padding: 16px 20px;
}

.ccm-sidebar-header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ccm-sidebar-body {
    padding: 16px 20px;
}

.ccm-sidebar-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
}

.ccm-sidebar-stat:last-child {
    border-bottom: none;
}

.ccm-sidebar-stat-label {
    color: #666;
}

.ccm-sidebar-stat-value {
    font-weight: 600;
    color: #333;
}

.ccm-sidebar-stat-value.highlight {
    color: #4CAF50;
    font-size: 16px;
}

.ccm-sidebar-divider {
    height: 1px;
    background: #e8e8e8;
    margin: 12px 0;
}

.ccm-sidebar-section {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #e8e8e8;
}

.ccm-sidebar-section h4 {
    margin: 0 0 12px 0;
    font-size: 13px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Inoculants */
.ccm-inoculants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.ccm-inoculant-card {
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 16px;
    cursor: pointer;
    transition: all 0.2s;
    background: white;
}

.ccm-inoculant-card:hover {
    border-color: #81C784;
}

.ccm-inoculant-card.selected {
    border-color: #4CAF50;
    background: #E8F5E9;
}

.ccm-inoculant-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.ccm-inoculant-name {
    font-weight: 600;
    color: #333;
}

.ccm-inoculant-badge {
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 12px;
    background: #C8E6C9;
    color: #2E7D32;
}

.ccm-inoculant-stats {
    font-size: 13px;
    color: #666;
}

/* Summary */
.ccm-summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.ccm-summary-stat {
    background: #f5f5f5;
    border-radius: 10px;
    padding: 16px;
    text-align: center;
}

.ccm-summary-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4CAF50;
}

.ccm-summary-stat-label {
    font-size: 13px;
    color: #666;
    margin-top: 4px;
}

.ccm-summary-species {
    margin-top: 24px;
}

.ccm-summary-species h4 {
    margin: 0 0 12px 0;
    font-size: 14px;
    color: #666;
}

.ccm-summary-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    flex-wrap: wrap;
}

/* Saved mixes */
.ccm-saved-mixes-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-height: 60vh;
    overflow-y: auto;
}

.ccm-saved-mix-card {
    background: #fafafa;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 16px;
    transition: all 0.2s;
}

.ccm-saved-mix-card:hover {
    border-color: #4CAF50;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.ccm-saved-mix-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.ccm-saved-mix-header h3 {
    margin: 0;
    font-size: 1rem;
    color: #333;
}

.ccm-saved-mix-date {
    font-size: 12px;
    color: #888;
}

.ccm-saved-mix-stats {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 8px;
    font-size: 13px;
    color: #666;
}

.ccm-saved-mix-stats span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.ccm-saved-mix-stats i {
    color: #4CAF50;
    font-size: 11px;
}

.ccm-saved-mix-actions {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.ccm-empty-state {
    text-align: center;
    padding: 40px;
    color: #888;
}

.ccm-empty-state i {
    font-size: 3rem;
    margin-bottom: 16px;
    color: #4CAF50;
    opacity: 0.5;
}

.ccm-empty-state p {
    margin: 4px 0;
}

/* Export button cream style */
.btn-export-pdf {
    background: #f5e6c8 !important;
    color: #8b6914 !important;
    border: 1px solid #e8d4a8 !important;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-export-pdf:hover {
    background: #eedbb5 !important;
}

/* Responsive */
@media (max-width: 1024px) {
    .ccm-wizard-layout {
        flex-direction: column;
    }
    
    .ccm-sidebar {
        width: 100%;
        position: static;
    }
}

@media (max-width: 768px) {
    .ccm-progress-bar {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .ccm-step-connector {
        display: none;
    }
    
    .ccm-step {
        min-width: 60px;
    }
    
    .ccm-step-icon {
        width: 40px;
        height: 40px;
    }
    
    .ccm-step-label {
        font-size: 11px;
    }
    
    .ccm-header {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
}
