.downloaditem {
  background: var(--foregroundcolor);
  border: 2px solid var(--accentcolor);
  border-radius: 8px;
  margin: 1rem 0;
  padding: 1.5rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

/* .downloaditem:hover {
  border-color: var(--froschgruen);
  box-shadow: 0 6px 12px rgba(104,163,111,0.3);
  transform: translateY(-2px);
} */

.download-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.download-header h3 {
  margin: 0;
  font-size: 1.3rem;
  color: var(--maincolor);
}

.download-btn {
  background: var(--froschgruen);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(104,163,111,0.4);

  display: inline-flex;
  align-items: center;
  gap: 0.5rem; /* Abstand zwischen Icon und Text */
}

.btn-icon {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  flex-shrink: 0; /* Icon bleibt stabil */
}

/* .download-btn:hover {
  background: #5a8e62;
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(104,163,111,0.6);
} */

.download-description p {
  /* color: var(--darkcolor); */
  line-height: 1.6;
  margin-bottom: 1rem;
  text-align: left;
}

.download-files details {
  background: var(--pagebackgroundcolor);
  padding: 1rem;
  border-radius: 4px;
  border-left: 4px solid var(--accentcolor);
}

.download-files summary {
  cursor: pointer;
  font-weight: bold;
  color: var(--maincolor);
  margin-bottom: 0.5rem;
}

.download-files ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.download-files li {
  margin: 0.3rem 0;
}
/* 
.download-files a {
  color: var(--froschgruen);
  text-decoration: none;
} */

/* .download-files a:hover {
  text-decoration: underline;
} */
