#weather-stats {
    width: 200px;
    /* Adjust width as needed */
    background-color: #14183d;
    /* Light grey background */
    padding: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    /* Soft shadow */
}

.stat {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 10px 0;
    padding: 5px;
    background-color: #000000;
    /* Black background for each stat */
    border: 1px solid #129444;
    /* Light green border */
    color: white;
    /* White text color */
    align-items: center;
}

.stat div {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-grow: 1;
    align-items: center;
}

.stat-label {
    font-weight: bold;
}

.stat-value {
    float: right;
}

.wind-arrow {
    margin-right: 10px;
    /* Adjust spacing between arrow and direction */
}