body {
	background: linear-gradient(135deg, #1e3c72, #2a5298);
	min-height: 100vh;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	color: white;
}

.swe_container {
	padding: 20px;
	max-width: 1200px;
	margin: 0 auto;
}

.swe_search_bar {
	background: rgba(255, 255, 255, 0.1);
	border: none;
	border-radius: 25px;
	padding: 15px 25px;
	color: white;
	backdrop-filter: blur(10px);
	margin-bottom: 30px;
	width: 100%;
	max-width: 400px;
}

.swe_search_bar::placeholder {
	color: rgba(255, 255, 255, 0.7);
}

.swe_main_panel {
	background: rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	padding: 30px;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	margin-bottom: 30px;
}

.swe_city_name {
	font-size: 2.5rem;
	font-weight: 300;
	margin-bottom: 5px;
}

.swe_rain_chance {
	color: rgba(255, 255, 255, 0.8);
	font-size: 1rem;
	margin-bottom: 30px;
}

.swe_current_temp {
	font-size: 4rem;
	font-weight: 200;
	margin: 0;
}

.swe_weather_icon {
	width: 120px;
	height: 120px;
	margin: 20px 0;
}

.swe_forecast_panel {
	background: rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	padding: 25px;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	margin-bottom: 20px;
}

.swe_panel_title {
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 20px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.swe_hourly_item {
	text-align: center;
	padding: 15px 10px;
	border-radius: 15px;
	background: rgba(255, 255, 255, 0.05);
	margin: 5px;
	transition: all 0.3s ease;
}

.swe_hourly_item:hover {
	background: rgba(255, 255, 255, 0.1);
	transform: translateY(-2px);
}

.swe_hourly_time {
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 10px;
}

.swe_hourly_icon {
	width: 40px;
	height: 40px;
	margin: 10px 0;
}

.swe_hourly_temp {
	font-size: 1.1rem;
	font-weight: 500;
}

.swe_daily_item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 15px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.swe_daily_item:last-child {
	border-bottom: none;
}

.swe_daily_day {
	font-size: 1rem;
	min-width: 80px;
}

.swe_daily_icon {
	width: 35px;
	height: 35px;
	margin: 0 15px;
}

.swe_daily_condition {
	flex-grow: 1;
	text-align: left;
	margin-left: 10px;
}

.swe_daily_temps {
	font-size: 1rem;
	min-width: 80px;
	text-align: right;
}

.swe_temp_high {
	color: white;
	font-weight: 500;
}

.swe_temp_low {
	color: rgba(255, 255, 255, 0.6);
	margin-left: 5px;
}

.swe_air_conditions {
	background: rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	padding: 25px;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	margin-top: 20px;
}

.swe_condition_item {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}

.swe_condition_item:last-child {
	margin-bottom: 0;
}

.swe_condition_icon {
	font-size: 1.2rem;
	color: rgba(255, 255, 255, 0.8);
	margin-right: 15px;
	width: 20px;
}

.swe_condition_label {
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.9rem;
	margin-bottom: 5px;
}

.swe_condition_value {
	font-size: 1.5rem;
	font-weight: 300;
}

.swe_see_more_btn {
	background: #007bff;
	border: none;
	color: white;
	padding: 10px 20px;
	border-radius: 20px;
	text-decoration: none;
	display: inline-block;
	margin-top: 15px;
	transition: all 0.3s ease;
}

.swe_see_more_btn:hover {
	background: #0056b3;
	color: white;
	text-decoration: none;
}

@media (max-width: 768px) {
	.swe_city_name {
		font-size: 2rem;
	}

	.swe_current_temp {
		font-size: 3rem;
	}

	.swe_weather_icon {
		width: 80px;
		height: 80px;
	}

	.swe_hourly_item {
		margin: 2px;
		padding: 10px 5px;
	}

	.swe_daily_day {
		min-width: 60px;
	}
}