#head1 {
	color: white;
	text-align: center;
	font-family: Arial, Helvetica, sans-serif;
}

#head2 {
	color: white;
	text-align: center;
	font-family: Arial, Helvetica, sans-serif;
}

.chart-wrapper {
  background: white;
  padding: 10px;
  border-radius: 8px;
  margin: 20px auto;
  max-width: 900px; /* optional */
}

#comboChart {
  display: block;
}


body {
  background-color: #007474;
}


p {
	color: white;
	font-family: Arial, Helvetica, sans-serif;
}

 p.upside-down {
    display: inline-block;           /* Needed for transform to work properly */
    transform: rotate(180deg);       /* Rotate 180 degrees */
    transform-origin: center;        /* Rotate around the center */
  }
  
/* --- Weather Widget Container --- */
.wu-widget {
    background: #ffffff;
    border-radius: 10px;
    padding: 16px 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.12);
    font-family: system-ui, sans-serif;
    color: #222;
    max-width: 360px;
    border: 1px solid #e5e5e5;
}

/* Error state */
.wu-widget.wu-error {
    background: #ffe5e5;
    border: 1px solid #ffb3b3;
    color: #a10000;
    text-align: center;
    padding: 20px;
}

/* --- Header --- */
.wu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.wu-title {
    font-size: 18px;
    font-weight: 600;
}

.wu-subtitle {
    font-size: 13px;
    color: #666;
    margin-top: 2px;
}

/* --- Temperature --- */
.wu-temp-main {
    text-align: right;
}

.wu-temp {
    font-size: 32px;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.wu-feels {
    font-size: 12px;
    color: #666;
}

/* --- Grid --- */
.wu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 16px;
    margin-top: 10px;
}

.wu-item {
    display: flex;
    flex-direction: column;
}

.wu-label {
    font-size: 12px;
    color: #777;
    margin-bottom: 2px;
}

.wu-value {
    font-size: 15px;
    font-weight: 600;
}

/* --- Footer --- */
.wu-footer {
    margin-top: 14px;
    font-size: 12px;
    color: #777;
    text-align: right;
    border-top: 1px solid #eee;
    padding-top: 8px;
}

.wu-wind-arrow {
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 10px solid #444;
    margin-left: 6px;
    transform: rotate(var(--deg));
}
