.gesamthoerer_container {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  padding: 20px;
  text-align: center;
  margin-top: 15px;
}

.inputGesamt {
    padding: 10px;
    font-size: 1em;
    width: 80px;
    margin-right: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#resultCount {
    font-size: 1.2em;
    margin-bottom: 10px;
    text-align: center;
	margin-top: 20px;
}

#output {
    display: flex;
    flex-direction: column;
    margin-top: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: white;
    padding: 15px;
}

.result-item {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    border-bottom: 1px solid #eee;
	text-align: left;
}

.result-item:last-child {
    border-bottom: none;
}

.station-name {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.station-name:hover {
    text-decoration: underline;
}

.listeners-count {
    color: #666;
}

.gesamt-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.stat-item {
    width: 300px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    padding: 10px;
    background: white;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
	justify-content: center;
}

.stat-item i {
    font-size: 1.5em;
    color: #007bff;
    min-width: 40px;
    text-align: center;
}

.stat-texts {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.stat-number {
    font-size: 24px;
    font-weight: bold;
    color: #007bff;
	text-align: center;
}

.stat-label {
    font-size: 14px;
    color: #555;
}

/* Responsive Design */
@media (max-width: 769px) {
	.stat-item {
		width: 100%;
	}
	
	.gesamthoerer_container {
	  padding: 5px;
	}
	#output {
	  padding: 2px 0 2px 0;
	}	
}
