/* CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* Google Font einbinden */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f0f0f0;
    color: #333;
    line-height: 1.6;
    padding: 20px;
}

h1 {
    text-align: center;
    color: #333;
}

table {
    width: 100%;
    margin-top: 20px;
    border-collapse: collapse;
}

th, td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

th {
    background-color: #4CAF50;
    color: white;
}

tr:hover {
    background-color: #f5f5f5;
}

a {
    color: #4CAF50;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    margin: 5px;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background-color: #45a049;
}

/* Container für die Ausrichtung */
.container {
    max-width: 1200px;
    margin: auto;
    overflow: auto;
    padding: 0 20px;
}

/* Abstand nach oben */
header, .content {
    padding-top: 40px;
}
@media (max-width: 768px) {
    .container {
        padding: 0 10px;
    }

    button {
        width: 100%;
        margin-top: 10px;
    }
}
button {
    transition: background-color 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

table {
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.row {
    display: flex;
    flex-wrap: wrap;
  }
  .col-3 {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 5px; /* Für ein wenig Abstand zwischen den Buttons */
  }
  .btn {
    width: 100%; /* Lässt die Buttons die gesamte Breite ihrer Container ausfüllen */
  }

  .ergebnis-highlight {
    font-weight: bold;
    color: green;
}

.steuersatz-box {
    border: 1px solid #000;
    padding: 10px;
    margin-top: 20px;
    max-width: 600px; /* Begrenzung der maximalen Breite */
    word-wrap: break-word; /* Sorgt für Umbrüche im Text */
}
  