.dsc-form {
  max-width: 500px;
  padding: 20px;
  border: 1px solid #eee;
  border-radius: 10px;
  background: #fafafa;
  font-family: sans-serif;
}

.dsc-field {
  margin-bottom: 20px;
}

.dsc-field label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}

/* SELECT */
.dsc-field select {
  width: 100%;
  max-width: 300px;
  padding: 8px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

/* FILE BUTTON */
.dsc-file-btn {
  background: #0073aa;
  color: white;
  border: none;
  padding: 10px 14px;
  border-radius: 6px;
  cursor: pointer;
}

.dsc-file-btn:hover {
  background: #005f8d;
}

.dsc-file-name {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  color: #555;
}

/* SUBMIT */
.dsc-submit {
  background: #28a745;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 6px;
  cursor: pointer;
  width: 100%;
}

.dsc-submit:hover {
  background: #218838;
}

/* RESPUESTAS */
.dsc-success {
  margin-top: 20px;
  padding: 15px;
  border-radius: 8px;
  background: #e6f4ea;
  border: 1px solid #b7e1c1;
  color: #1e7e34;
}

.dsc-error {
  margin-top: 20px;
  padding: 15px;
  border-radius: 8px;
  background: #fdecea;
  border: 1px solid #f5c6cb;
  color: #a71d2a;
}

.dsc-download {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 14px;
  background: #17a2b8;
  color: white;
  border-radius: 6px;
  text-decoration: none;
}

.dsc-download:hover {
  background: #138496;
}

/* INPUT TEXT */
.dsc-input {
  width: 100%;
  max-width: 300px;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

/* ESTADO WARNING */
.dsc-warning {
  margin-top: 20px;
  padding: 15px;
  border-radius: 8px;
  background: #fff3cd;
  border: 1px solid #ffeeba;
  color: #856404;
}

/* CONTENEDOR CAMPOS DINÁMICOS */
.dsc-dynamic-fields {
  margin-top: 10px;
}

/* INPUTS DINÁMICOS */
.dsc-dynamic-fields .dsc-field {
  margin-bottom: 15px;
}

.dsc-dynamic-fields input {
  width: 100%;
  max-width: 400px;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
}
