/* Current Weather Widget Styles */
.cww-widget {
    --cww-green: #16A34A; /* Tailwind green-600 vibe; adjust if needed to match your design exactly */
    --cww-text: var(--cww-green);
    --cww-spacing: 10px;
    --cww-font: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
    color: var(--cww-text);
    font-family: var(--cww-font);
    border-radius: 12px;
    padding: 16px 18px;
    display: inline-block;
    background: transparent; /* keep clean like the screenshot */
}

.cww-title {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.2px;
    opacity: 0.9;
    margin-bottom: 6px;
    text-transform: none;
}

.cww-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cww-icon .cww-svg {
    width: 44px;
    height: 44px;
}

.cww-stroke {
    stroke: var(--cww-green);
}
.cww-fill-none {
    fill: none;
}

.cww-meta {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.cww-temp {
    font-size: 36px;
    line-height: 1;
    font-weight: 700;
}

.cww-unit {
    font-size: 20px;
    margin-left: 4px;
    font-weight: 600;
}

.cww-desc {
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize; /* match common weather text style */
    opacity: 0.9;
}

.cww-error {
    color: #B91C1C;
    background: #FEE2E2;
    border: 1px solid #FCA5A5;
    border-radius: 8px;
}
