/* ===== BASIS ===== */
body {
  font-family: Arial, sans-serif;
  max-width: 800px;
  margin: auto;
  padding: 15px;
  line-height: 1.4;
}

h3 {
  margin-bottom: 20px;
  color: #757575;

}
h4 {
  margin-bottom: 20px;
  color: #757575;
  font-size: 60px;
  text-align: center;
}

label {
  font-weight: bold;
}

/* ===== INPUTS ===== */
input, select, textarea, button {
  width: 100%;
  padding: 10px;
  margin-top: 6px;
  margin-bottom: 14px;
  box-sizing: border-box;
  font-size: 16px;
}

/* ===== BUTTON BASIS ===== */
button {
  background: linear-gradient(135deg, #2c7be5, #1a5fd0);
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  min-height: 44px;
}

/* ===== BUTTON HOVER (DESKTOP) ===== */
@media (hover: hover) {
  button:hover {
    transform: translateY(-1px);
  }
}

/* ===== SUBMIT BUTTON ===== */
.submit-btn {
  background: linear-gradient(135deg, #2c7be5, #1a5fd0);
  color: white;
  border: none;
  padding: 12px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.submit-btn:hover {
  background: linear-gradient(135deg, #1a5fd0, #174bb5);
  transform: translateY(-1px);
}

.submit-btn:active {
  transform: scale(0.97);
}

/* Klick Animation */
.submit-btn.clicked {
  animation: clickPulse 0.3s ease;
}

@keyframes clickPulse {
  0% { transform: scale(1); }
  50% { transform: scale(0.92); }
  100% { transform: scale(1); }
}

/* ===== MEDIKAMENTE ===== */
.medikament-row {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}

.medikament-row input {
  width: 100%;
}

.remove-btn {
  width: auto;
  padding: 8px 12px;
  background: #e74c3c;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.remove-btn:hover {
  background: #c0392b;
}

/* ===== MOBILE ===== */
@media (max-width: 600px) {

  body {
    padding: 10px;
  }

  h2 {
    font-size: 20px;
  }

  input, select, textarea, button {
    font-size: 16px;
    padding: 12px;
  }

  .medikament-row {
    flex-direction: column;
    align-items: stretch;
  }

  .remove-btn {
    width: 100%;
  }
}