@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,400;0,900;1,700&display=swap');

body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: start;
    min-height: 100vh;
    margin: 0;
    background-color: #fff;
}

.table-container {
    width: 98%;
    margin: 20px;
    background-color: #4CAF50;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    overflow-x: auto;
    color: white;
}

table {
    width: 96%;
    border-collapse: collapse;
}

th, td {
    padding: 15px;
    text-align: left;
    border: none;
	text-align: center;
}

.box-title {
	font-family: Merriweather, serif;
	font-size: 2.8rem;
	font-weight: bold;
	margin-top: 8px;
	
}

.solaricon {
    font-size: 5rem;
	margin-top: 10px;
	margin-bottom: 10px;
}

.adresse {
    font-size: 1.0rem;
	color: black;
}

.now {
    font-size: 1.0rem;
	vertical-align: 0.6rem;
}

.kwh {
	font-family: Merriweather, serif;
	font-size: 3rem;
	font-weight: bold;
}

.kwh {
	font-family: Merriweather, serif;
	font-size: 3rem;
	font-weight: bold;
	position: relative;
	padding-bottom: 6px;
}

.kwh:after {
  content: '';
  display: block;
  width: 80%;
  height: 2px;
  background: white;
  position: absolute;
  left: 45%;
  bottom: 0;
  transform: translateX(-50%);
}

.footer-text {
	font-family: Merriweather, serif;
	font-size: 1.6rem;
}

.today {
	font-family: Merriweather, serif;
	font-size: 1.3rem;
	margin-top: 15px;
}

.nobreak {
	display: none;
}		

.forcebreak {
	display: none;
}


/* Media Query für Bildschirmbreiten unter 600px */
@media (max-width: 600px) {
    
	.box-title {
	font-family: Merriweather, serif;
	font-size: 2.5rem;
	font-weight: bold;
	margin-top: 8px;
	}
	
	.solaricon {
		font-size: 4rem;
		margin-top: 10px;
		margin-bottom: 10px;
	}

	.adresse {
		font-size: 0.8rem;
	}

	.now {
		font-size: 1.0rem;
		vertical-align: 0.6rem;
	}

	.kwh {
		font-family: Merriweather, serif;
		font-size: 2.5rem;
		font-weight: bold;
	}
	
	.footer-text {
		font-family: Merriweather, serif;
		font-size: 1.1rem;
	}

	.today {
		font-family: Merriweather, serif;
		font-size: 1.2rem;
		margin-top: 15px;
	}
	
	.forcebreak {
		display: block;
	}
	
}