/* Estilos para el formulario de creación de cursos */
#sc-crear-curso-slider { max-width: 700px; 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; }
.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-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%; }
