/* Estilos para el formulario de creación de cursos */
#sc-crear-curso-slider { max-width: 900px; margin: 2em auto; padding: 2em; border: 1px solid #ddd; border-radius: 8px; box-shadow: 0 4px 10px rgba(0,0,0,0.05); overflow: hidden; font-family: sans-serif; }

/* Indicador de Pasos */
.sc-steps-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    position: relative;
}

.sc-steps-indicator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%);
    z-index: 0;
}

.sc-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 1;
    flex: 1;
}

.sc-step-number {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.sc-step-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.sc-step.active .sc-step-number {
    background: #fff;
    color: #667eea;
    border-color: #fff;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

.sc-step.active .sc-step-label {
    color: #fff;
    font-weight: 700;
}

.sc-step.completed .sc-step-number {
    background: #00e676;
    color: #fff;
    border-color: #00e676;
}

.sc-step.completed .sc-step-number::after {
    content: '✓';
    font-size: 20px;
}

.sc-step.completed .sc-step-label {
    color: #fff;
}

/* Responsive para indicador de pasos */
@media (max-width: 768px) {
    .sc-steps-indicator {
        padding: 15px 10px;
    }
    
    .sc-step-number {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .sc-step-label {
        font-size: 10px;
    }
}
.sc-crear-curso-container { display: flex; transition: transform 0.5s ease-in-out; }
.sc-slide { min-width: 100%; box-sizing: border-box; }
.sc-slide h3 { text-align: center; font-size: 22px; color: #333; margin-bottom: 1.5em; }
.sc-form-field { margin-bottom: 1.5em; }
.sc-form-field label { display: block; margin-bottom: 8px; font-weight: bold; color: #444; }
.sc-form-field input[type="text"], .sc-form-field textarea, .sc-form-field select { width: 100%; padding: 10px; border: 1px solid #ccc; border-radius: 4px; box-sizing: border-box; }
.sc-form-field input.uppercase { text-transform: uppercase; }
.sc-navigation { display: flex; justify-content: space-between; margin-top: 2em; }
.sc-btn { padding: 10px 20px; border: none; border-radius: 5px; cursor: pointer; font-size: 16px; }
.sc-btn-primary { background-color: #007cba; color: white; }
.sc-btn-secondary { background-color: transparent; color: #666; }
.sc-btn-danger { background-color: #dc3545; color: white; padding: 8px 16px; border: none; border-radius: 5px; cursor: pointer; font-size: 14px; transition: all 0.3s; }
.sc-btn-danger:hover { background-color: #c82333; transform: translateY(-2px); }
.sc-tipo-curso-selection { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.sc-tipo-curso-option { border: 2px solid #eee; padding: 20px; border-radius: 8px; cursor: pointer; text-align: center; transition: all 0.2s ease; }
.sc-tipo-curso-option.selected { border-color: #007cba; box-shadow: 0 0 10px rgba(0, 124, 186, 0.2); }
.sc-tipo-curso-option h4 { margin-top: 0; }

/* Estilos para el creador de contenido */
.modulo-item { background: #f9f9f9; padding: 15px; border: 1px solid #e0e0e0; border-radius: 5px; margin-bottom: 20px; }
.modulo-header { font-weight: bold; margin-bottom: 15px; }
.sesion-item { background: #fff; padding: 15px; border: 1px solid #ddd; border-radius: 5px; margin-bottom: 15px; }
.enlaces-container .enlace-item { display: flex; gap: 10px; margin-bottom: 10px; }
.enlace-item input { width: 50%; }
