
.custom-file-upload {
  border: 2px solid #3366cc;
  display: inline-block;
  padding: 0.6em 1.2em;
  cursor: pointer;
  border-radius: 6px;
  background-color: #f0f8ff;
  color: #3366cc;
  font-weight: bold;
  transition: background 0.3s ease, color 0.3s ease;
}

.custom-file-upload:hover {
  background-color: #3366cc;
  color: #fff;
}

/* Container für Profilbereich */
.profile-section {
  display: flex;
  align-items: center;
  gap: 1.5em;          /* Abstand zwischen Bild und Name */
  margin-top: 1.5em;   /* Abstand nach oben */
}

/* Profilbild Vorschau */
.profile-section img {
  width: 120px;        /* feste Größe */
  height: 120px;
  object-fit: cover;   /* Bild wird zugeschnitten */
  border-radius: 50%;  /* rundes Profilbild */
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Name neben dem Bild */
.profile-section .profile-name {
  font-size: 1.3rem;
  font-weight: bold;
  color: #333;
}

.file-preview img {
  max-width: 120px;
  border-radius: 50%;
  margin-top: 1em;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
