/* dashboard.css */

body {
  font-family: 'Fira Code', monospace;
  background-color: #f5f5f5;
  color: #333;
}

.dashboard {
  padding: 2em 1em;
  text-align: center;
}

.dashboard h1 {
  font-size: 2em;
  margin-bottom: 0.5em;
}

.dashboard p {
  font-size: 1.1em;
  margin: 0.5em 0;
}

.dashboard-lottie {
  margin: 2em 0;
}

.features,
.next-courses ul {
  list-style: none;
  padding: 0;
  margin: 1em 0;
  text-align: left;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.features li,
.next-courses li {
  background: #e0e0e0;
  margin: 0.3em 0;
  padding: 0.5em;
  border-radius: 4px;
  font-size: 1em;
}

.next-courses {
  margin-top: 2em;
}

.next-courses h2 {
  font-size: 1.5em;
  margin-bottom: 0.5em;
}

.cta-dashboard {
  margin: 2em 0;
}

.button-animated {
  display: inline-block;
  margin-top: 1em;
  padding: 0.5em 1em;
  background-color: #4CAF50;
  color: white;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
}

.button-animated:hover {
  background-color: #388E3C;
}

.feedback {
  margin-top: 3em;
  background: #ffffff;
  padding: 1.5em;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
}

.feedback h2 {
  margin-bottom: 0.5em;
}

.feedback textarea {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 0.5em;
  font-family: inherit;
  resize: vertical;
  margin-bottom: 1em;
}

.feedback button {
  background-color: #2196F3;
  color: white;
  border: none;
  padding: 0.5em 1em;
  cursor: pointer;
  border-radius: 4px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.feedback button:hover {
  background-color: #1976D2;
}

/* Ajuste para pantallas pequeñas */
@media (max-width: 600px) {
  .dashboard h1 {
    font-size: 1.5em;
  }

  .features li,
  .next-courses li {
    font-size: 0.95em;
  }
}
