/* NC Weather Plugin Styles */

.ncw-container * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
	font-family: manrope;
}

.ncw-container {
    color: white;
    width: 500px;
    max-width: 100%;
    margin: 0 auto;
}

.ncw-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ncw-left-column,
.ncw-right-column {
    flex: 1;
}

.ncw-weather-widget {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ncw-location h1 {
    font-size: 14px;
	font-weight: 600;
	margin: 0px;
	color: white;
}

.ncw-temperature span {
    font-size: 36px;
    font-weight: 500;
}

.ncw-weather-details {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
}

.ncw-condition {
	display: flex;
    justify-content: flex-end;
    flex-direction: column;
    align-items: flex-end;
    margin-bottom: 5px;
}

.ncw-condition-text {
    font-size: 13px;
    margin-top: 0px;
    text-align: center;
}

.ncw-high-low {
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 13px;
    margin-bottom: 0px;
    gap: 4px;
}

.ncw-hourly-forecast {
    display: flex;
    justify-content: space-between;
    margin-top: 0px;
    flex-wrap: wrap;
}

.ncw-hourly {
    text-align: center;
    margin-bottom: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ncw-hourly span {
    font-size: 13px;
}

.ncw-icon {
    width: 18px;
    height: 18px;
    margin: 0px;
}

.ncw-icon-large {
    width: 28px;
    height: 28px;
}

.ncw-attribution {
    font-size: 10px;
    text-align: center;
    margin-top: 10px;
}

.ncw-attribution a {
    color: white;
    text-decoration: underline;
}