.ww-widget {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
	background: linear-gradient(180deg, #4a4f57 0%, #383c42 100%);
	color: #ffffff;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
	padding: 14px 22px;
	border-radius: 4px;
	box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.15);
}

.ww-widget.ww-error {
	background: #7a2222;
	font-size: 13px;
	padding: 10px 16px;
}

.ww-current {
	display: flex;
	align-items: center;
	gap: 10px;
	padding-right: 20px;
	border-right: 1px solid rgba(255, 255, 255, 0.15);
	min-width: 160px;
}

.ww-location {
	font-weight: 700;
	font-size: 20px;
	letter-spacing: 0.3px;
}

.ww-current-icon {
	width: 40px;
	height: 40px;
}

.ww-current-temp {
	font-weight: 700;
	font-size: 22px;
}

.ww-forecast-row {
	display: flex;
	flex: 1;
	justify-content: space-between;
	gap: 10px;
	flex-wrap: wrap;
}

.ww-day {
	display: flex;
	flex-direction: column;
	align-items: center;
	min-width: 60px;
	font-size: 13px;
}

.ww-day-label {
	font-weight: 600;
	margin-bottom: 4px;
	opacity: 0.9;
}

.ww-day-icon {
	width: 30px;
	height: 30px;
	margin-bottom: 4px;
}

.ww-day-temps {
	display: flex;
	gap: 6px;
}

.ww-max {
	font-weight: 700;
	color: #ffffff;
}

.ww-min {
	color: rgba(255, 255, 255, 0.65);
}

@media (max-width: 700px) {
	.ww-widget {
		justify-content: center;
	}
	.ww-current {
		border-right: none;
		border-bottom: 1px solid rgba(255, 255, 255, 0.15);
		padding-right: 0;
		padding-bottom: 10px;
		width: 100%;
		justify-content: center;
	}
	.ww-forecast-row {
		justify-content: center;
	}
}
