/* Kunden spezifische Styles */
#kunden {
  padding: 20px;
}
#kundenListe {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.kunden-item {
  background-color: #fff;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  margin-bottom: 10px;
}
.kunden-item p {
  margin: 5px 0;
}
.kunden-item button {
  margin-top: 10px;
  padding: 8px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

/* FAB in der Kunden Section */
.fab#kundenFab {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #28a745;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
  z-index: 1000;
}

/* Kunden Edit Modal: Slide in from right, 45% Breite, volle Höhe */
#kundenEditModal {
  position: fixed;
  top: 0;
  right: -100%;
  width: 45%;
  height: 100%;
  background-color: #fff;
  box-shadow: -2px 0 8px rgba(0,0,0,0.2);
  transition: right 0.3s ease;
  z-index: 1200;
  overflow-y: auto;
}
#kundenEditModal.active {
  right: 0;
}
#kundenEditModal .edit-modal-content {
  max-width: none;
  width: 100%;
  height: 100%;
  border-radius: 0;
  padding: 20px;
  position: relative;
}

/* Tab-Navigation im Kunden-Popup */
.kunden-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}
.kunden-tab {
  background-color: #eee;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
}
.kunden-tab.active {
  background-color: #007bff;
  color: #fff;
}

/* Kunden Edit Modal Form Styles */
#kundenEditForm label {
  margin-top: 10px;
}
#kundenEditForm input,
#kundenEditForm select {
  padding: 8px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 100%;
}
#kundenEditForm button {
  margin-top: 20px;
  padding: 10px;
  background-color: #007bff;
  border: none;
  color: white;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
}
