body {font-family: Arial, sans-serif;}

h1 {text-align: center;}

table {
	margin: 0 auto;
	border-collapse: collapse;
}

td, th {
	padding: 0.3rem;
	text-align: center;
	border: 1px solid black;
}

button {
	font-size: 1.2rem; 			/* Ändere die Schriftgröße auf 1.2rem oder passe sie nach Bedarf an */
	padding: 0.6rem 1rem;		/* Ändere den Padding-Wert auf 0.5rem 1rem oder passe ihn nach Bedarf an */
	border: none;
	background-color: #007bff;
	color: white;
	cursor: pointer;
}

button:hover {background-color: #0062cc;}

button:active {background-color: #005cbf;}

.minus {background-color: #dc3545;}

.minus:hover {background-color: #c82333;}

.minus:active {background-color: #bd2130;}

.plus {background-color: #28a745;}

.plus:hover {background-color: #218838;}

.plus:active {background-color: #1e7e34;}

@media screen and (max-width: 600px) {
	table {width: 100%;}

	table th, table td {
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
		padding: 0.5rem;
	}

	table th {
		font-weight: bold;
		text-align: center;
	}

	.anzahl {font-size: 1.8rem;}				/* Schriftgröße für die Anzahl */

	.summe {font-size: 1.8rem;}					/* Schriftgröße für die Summe */
}

#reset {
	display: block;
	margin: 1rem auto;
}

#ergebnis {
	text-align: center;
	font-size: 1.8rem; /* Füge die Schriftgröße hinzu oder passe sie nach Bedarf an */
	font-weight: bold; /* Füge die Schriftgewichtung hinzu oder passe sie nach Bedarf an */
	margin-top: 10px;
}