/*Style für Seite Interessantes. Texte linke Spalte werden bei kleinen Seiten im footer angezeigt*/
/*************** Main Spalte**********************/


/*Format Eingabe Formular */
.label {
  display: inline-block;
  width: 100px;
}

form{
  border: 2px solid black;
  display: inline-block;
  padding: 10px; /* Optional: Um den Inhalt etwas vom Rahmen abzurücken */
  border-radius: 3%;
}
/*Eingabefeld start und end*/
input[type="number"] {
width: 77px;
text-align: center;
}
#textForm{
  border-radius: 3%;
  background-color: rgb(230, 228, 228);
  padding: 3px;
  margin: 3px;
}
#berechnenButton{
text-align: center
}
/*Ende Format Eingabe Formular */
/*Für Radio Buttons*/
  .radio-buttons {
      display: flex;
      gap: 10px;
  }
/*für Radio Buttons*/
/*Ende Style für Seite pt100-TebGenerator*/
  .clear{
    clear: both;
    /*background-color: rgb(10, 10, 10);*/
    height: 40px;
    margin: 15px;
  }
  /*Schriftfarbe  für Ergebnis*/
  #ergebnis{
    color: red;
    font-style: bold;
    font-size: larger;
  }

/* Tablets (Hochformat), Smartphones (Querformat) Stile für mittlere Bildschirme */
@media screen and (min-width: 481px) and (max-width: 768px) {

}

/* Tablets (Querformat), kleine Laptops Stile für größere Bildschirme 
@media screen and (min-width: 769px) and (max-width: 1024px) {

}

/* Laptops, Desktops Stile für große Bildschirme 
@media screen and (min-width: 1025px) {
 
}
*/