.nws-weather-widget {
    font-family: Arial, sans-serif;
    margin: 15px 0;
}

.nws-current-conditions, .nws-weather-alerts, .nws-weather-links {
    background: #f0f8ff;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.nws-weather-5day-widget {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
}

.nws-weather-card {
    background: #f0f8ff;
    padding: 12px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    text-align: center;
}

.nws-weather-card-header {
    font-weight: bold;
    margin-bottom: 8px;
}

.nws-weather-card-text {
    font-size: 0.9em;
    margin-top: 6px;
    line-height: 1.3;
}

.nws-weather-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 6px;
}

.nws-weather-links a {
    display: inline-block;
    padding: 10px 15px;
    background: #1F419B;
    color: #ffffff !important;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
}

.nws-weather-links a {
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.nws-weather-links a:hover {
    transform: translateY(-1px);
}