 
/* Progress Container */
.progress-container {
    padding: 20px 0 24px;
    border-bottom: 2px solid #f0f0f0;
    margin-bottom: 16px;
}

.progress-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
}

.progress-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #e8ecef;
    color: #95a5a6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 8px;
    transition: all 0.3s ease;
    z-index: 2;
    position: relative;
}

.progress-label {
    font-size: 11px;
    color: #95a5a6;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
}

.progress-step.active .progress-circle {
    background: #c21f26;
    color: white;
    box-shadow: 0 0 0 4px rgba(194,31,38,0.15);
}

.progress-step.active .progress-label {
    color: #c21f26;
    font-weight: 600;
}

.progress-step.completed .progress-circle {
    background: #27ae60;
    color: white;
}

.progress-step.completed .progress-label {
    color: #27ae60;
}

.progress-line {
    flex: 1;
    height: 2px;
    background: #e8ecef;
    margin: 0 8px 24px;
    position: relative;
    transition: all 0.3s ease;
}

.progress-step.completed + .progress-line {
    background: #27ae60;
}

/* Smooth scroll for accordion */
#controls {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
#controls::-webkit-scrollbar {
    width: 8px;
}

#controls::-webkit-scrollbar-track {
    background: #f8f9fa;
    border-radius: 4px;
}

#controls::-webkit-scrollbar-thumb {
    background: #c21f26;
    border-radius: 4px;
    transition: background 0.2s;
}

#controls::-webkit-scrollbar-thumb:hover {
    background: #a11920;
}

/* Firefox scrollbar */
#controls {
    scrollbar-width: thin;
    scrollbar-color: #c21f26 #f8f9fa;
}

/* Next step button */
.btn-next-step {
    width: 100%;
    padding: 16px 24px;
    margin-top: 24px;
    background: #c21f26;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-next-step:hover {
    background: #a11920;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(194,31,38,0.3);
}

.btn-next-step i {
    font-size: 14px;
}

.btn-save-config {
    width: 100%;
    padding: 12px 24px;
    margin-top: 8px;
    background: #fff;
    color: #5a6c7d;
    border: 2px solid #e8ecef;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-save-config:hover {
    border-color: #c21f26;
    color: #c21f26;
    transform: translateY(-2px);
}

/* Action buttons inside panel */
.panel-actions {
    padding: 24px 0;
    margin-top: 32px;
    border-top: 2px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.panel-actions .btn {
    width: 100%;
    padding: 16px 24px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    text-align: center;
}

.panel-actions .btn-primary {
    background: #c21f26;
    color: #fff;
    box-shadow: 0 4px 12px rgba(194,31,38,0.3);
}

.panel-actions .btn-primary:hover {
    background: #a11920;
    box-shadow: 0 6px 20px rgba(194,31,38,0.4);
    transform: translateY(-2px);
}

.panel-actions .btn-secondary {
    background: #fff;
    color: #2c3e50;
    border: 2px solid #e8ecef;
}

.panel-actions .btn-secondary:hover {
    border-color: #c21f26;
    color: #c21f26;
    transform: translateY(-2px);
}
