.weather-widget{
  display:flex;
  align-items:center;
  gap:12px;
  padding:0px 12px;
  /*border:1px solid #dcdcdc;*/
  border-radius:8px;
  background:#fff;
  max-width:340px;
  font-family: Arial, sans-serif;
}

.weather-widget img{
  width:52px !important;
  height:52px !important;
}

.ww-location{
  font-weight:700;
  font-size:16px;
  color:#003366;
}

.ww-temp{
  font-size:24px;
  font-weight:800;
}

.ww-desc{
  font-size:13px;
  color:#555;
}
.ww-left{
	padding-top: 20px;
}
/* ===== WEATHER WIDGET: ONE LINE ON MOBILE ===== */
@media (max-width: 768px){
  .weather-widget{
    display: inline !important;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    white-space: nowrap;
  }

  .ww-left,
  .ww-right{
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .ww-location{
    font-size: 13px;
    font-weight: 600;
  }

  .ww-temp{
    font-size: 14px;
    font-weight: 600;
  }

  .ww-right img{
    width: 22px;
    height: 22px;
    flex-shrink: 0;
  }

  .ww-desc{
    font-size: 12px;
  }
    .MultiFunctionControl * {
            display: inline !important;
        }
}
