/* Dashboard menu customizado */
.dashboard-menu {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.dashboard-menu-btn {
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  border-radius: 4px;
  padding: 0.8rem 2.2rem;
  font-size: 1.5rem;
  font-family: var(--font-primary);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, filter 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  display: inline-block;
}
.dashboard-menu-btn:hover {
  background: var(--color-primary-hover);
  color: var(--color-white);
  filter: brightness(1.1);
}
.dashboard-menu-logout {
  background: var(--color-error-dark);
  color: var(--color-white);
  font-weight: bold;
}
.dashboard-menu-logout:hover {
  background: #b71c1c;
  color: var(--color-white);
}
.dashboard-menu-logout-form {
  display: inline;
}

/* Dashboard visual improvements */
.dashboard-section {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px #0001;
  margin-bottom: 2rem;
  padding: 2rem;
}
.dashboard-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
}
.dashboard-table th, .dashboard-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
}
.dashboard-table th {
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
  font-weight: 600;
}
.dashboard-table tr:last-child td {
  border-bottom: none;
}
.btn-edit {
  background: #269fe6;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 0.5rem 1.2rem;
  margin-right: 0.5rem;
  cursor: pointer;
  font-size: 1.4rem;
  transition: background 0.2s;
}
.btn-edit:hover {
  background: #2086c2;
}
.btn-delete {
  background: #e62e2e;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 0.5rem 1.2rem;
  cursor: pointer;
  font-size: 1.4rem;
  transition: background 0.2s;
}
.btn-delete:hover {
  background: #b71c1c;
}

@media (max-width: 700px) {
  .dashboard-menu {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }
  .dashboard-menu-btn, .dashboard-menu-logout {
    width: 100%;
    text-align: center;
    font-size: 1.7rem;
    padding: 1.2rem 0;
  }
  .dashboard-menu-logout-form {
    width: 100%;
    display: block;
  }
}
