﻿body {
  margin: 0;
  background: #ffffff;
  font-family: sans-serif;
  color: white;
}

#weather {
  text-align: center;
  padding: 10px;
  /*text-shadow: 0 0 6px rgba(255,255,255,0.4), 0 0 12px rgba(255,255,255,0.2);*/
  opacity: 1;
  filter: none;
}

#place {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 5px;
}

#row-text,
#row-wind {
  font-size: 26px;
}

#time {
  font-size: 12px;
  margin-top: 5px;
}

#row-text {
  margin-bottom: 8px;
}

#row-icon {
  margin: 5px 0;
  margin-top: -25px;
}

#icon {
  width: 160px;
}

#row-wind {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: -20px;
}

#wind-arrow {
  display: inline-block;
  transform-origin: 50% 50%;
}



#wind-arrow svg {
  fill: currentColor;
  /*filter: drop-shadow(0 0 0.5px rgba(255,255,255,0.3));*/
}

/* PredictWind colors */
.low { color: #9b59b6; }
.blue { color: #3498db; }
.green { color: #2ecc71; }
.yellow { color: #f1c40f; }
.orange { color: #e67e22; }
.red { color: #e74c3c; }
.darkred { color: #8e0000; }

/* TEST PANEL */
#test-panel {
  position: fixed;
  bottom: 10px;
  left: 10px;
  background: #000;
  padding: 10px;
  font-size: 12px;
}


/* wind wobble animation */
#wind-arrow svg {
  transform-origin: 50% 50%;
  
}