body {
  font-family: 'Arial', sans-serif;
  background-color: #f4f7f6;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}
.mwst-rechner {
  background-color: #fff;
  padding: 1.2rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 350px;
}
.mwst-rechner h2 {
  color: #333;
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  text-align: center;
}
.mwst-rechner form {
  display: flex;
  flex-direction: column;
}
.mwst-rechner label {
  margin-bottom: 1rem;
}
.mwst-rechner input, .mwst-rechner select, .mwst-rechner button {
  padding: 1rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 0.25rem;
}
.mwst-rechner button {
  background-color: #007bff;
  color: white;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
}
.mwst-rechner button:hover {
  background-color: #0056b3;
}
.ergebnis {
  font-size: 2rem;
  padding: 0.5rem 0;
}
.ergebnis span {
  font-weight: bold;
}
.radio-group {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.radio-group input[type="radio"] {
  margin-right: 0.5rem;
}
.radio-group label {
  order: 2;
}

.mwst-rechner input[type="text"][readonly] {
  background-color: #e9ecef;
  color: #495057;
  font-weight: bold;
}

.titelpic{
  display: flex;
  justify-content: center;
	padding: 10px;
}
.input-group {
  display: flex;
  justify-content: space-between; /* Ändert die Ausrichtung der Inhalte */
  align-items: center; /* Zentriert die Elemente vertikal */
}

.input-group input[type="text"] {
  flex-grow: 1; /* Lässt das Textfeld den verfügbaren Platz ausfüllen */
  margin-right: 0.5rem; /* Fügt einen kleinen Abstand zwischen Textfeld und Button hinzu */
}

.kopier-button {
  background: #e7e7e7;
  border: none;
  padding: 10px;
  cursor: pointer;
}

/* Stil für das Kopiersymbol */
.kopier-button::after {
  content: '\1F4CB'; /* Unicode für das Kopiersymbol */
  display: block;
  margin-left: 5px;
}
/* Responsive Design */
@media (max-width: 768px) { /* Erhöhe den Wert, um Tablets einzubeziehen */
  .mwst-rechner {
    width: auto; /* Erlaubt dem Container, sich auszudehnen */
    max-width: none; /* Entfernt die maximale Breitenbegrenzung */
    margin: 1rem; /* Fügt etwas Abstand zu den Seiten hinzu */
    box-shadow: none; /* Entfernt den Schatten für einen flacheren Stil */
  }
}