.lwp-weather-wrapper {
	background: #fdfdfd;
	border: 1px solid #ddd;
	border-radius: 8px;
	padding: 20px;
	max-width: 300px;
	text-align: center;
	font-family: sans-serif;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.lwp-header h3 {
	margin-top: 0;
	margin-bottom: 10px;
	font-size: 1.25em;
	color: #333;
}

.lwp-content {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.lwp-temp {
	font-size: 2.5em;
	font-weight: bold;
	color: #222;
	margin: 10px 0;
}

.lwp-temp-unit {
	font-size: 0.5em;
	vertical-align: super;
	color: #666;
}

.lwp-desc {
	color: #555;
	text-transform: capitalize;
}

/* Horizontal Layout */
.lwp-weather-wrapper.lwp-horizontal {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	max-width: 600px;
	padding: 15px 30px;
	background: #f4f8fb;
	/* Light blueish background */
	border: none;
	border-radius: 12px;
}

.lwp-h-left {
	display: flex;
	align-items: center;
	gap: 15px;
}

.lwp-h-icon img {
	width: 60px;
	height: 60px;
}

.lwp-h-temp {
	font-size: 2.5em;
	font-weight: 700;
	color: #333;
	line-height: 1;
	position: relative;
}

.lwp-h-unit {
	font-size: 0.5em;
	vertical-align: top;
	position: absolute;
	top: 0;
	right: -10px;
	font-weight: 400;
	color: #5d7c95;
}

.lwp-h-right {
	display: flex;
	gap: 30px;
	color: #334e6f;
}

.lwp-h-item {
	display: flex;
	align-items: center;
	gap: 10px;
}

.lwp-h-item .dashicons {
	font-size: 24px;
	width: 24px;
	height: 24px;
	color: #2c76b9;
	/* Icon color */
}

.lwp-h-data {
	display: flex;
	flex-direction: column;
	text-align: left;
}

.lwp-h-value {
	font-weight: 600;
	font-size: 1em;
	color: #1a2a3a;
}

.lwp-h-label {
	font-size: 0.85em;
	color: #5c6b7f;
}