@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

/* Dashboard Container Styles (Sleek, Minimal, Scientific Layout) */
.novagreen-weather-dashboard {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    max-width: 950px;
    margin: 30px auto;
    border-radius: 16px;
    padding: 30px;
    background: #ffffff;
    color: #2d3748;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    position: relative;
    transition: all 0.3s ease;
}

/* Elegant Green Accent Bar on Top */
.novagreen-weather-dashboard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: #2d6a4f;
    border-radius: 16px 16px 0 0;
}

/* System Admin Notice Banner */
.ng-admin-warning-banner {
    background: #fff5f5;
    border: 1px solid #fed7d7;
    padding: 12px 18px;
    border-radius: 8px;
    margin-bottom: 25px;
    font-size: 13.5px;
    color: #c53030;
    line-height: 1.4;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ng-admin-warning-banner svg {
    flex-shrink: 0;
}

/* Header Grid Layout (Clean Science Look) */
.ng-weather-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 25px;
    border-bottom: 1px solid #edf2f7;
}

.ng-header-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    flex: 1;
    min-width: 220px;
}

.ng-location-header-row {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.ng-location-icon-wrapper {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #eaf5ed;
    color: #2d6a4f;
    border: 1px solid #d1e7dd;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 5px rgba(45, 106, 79, 0.05);
    transition: all 0.2s ease;
}

.ng-location-icon-wrapper:hover {
    transform: scale(1.05);
    background: #2d6a4f;
    color: #ffffff;
    border-color: #2d6a4f;
}

.ng-location-text-group {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ng-location-title {
    margin: 0;
    font-size: 21px;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.3px;
    line-height: 1.2;
}

.ng-header-coords {
    font-size: 11px;
    color: #64748b;
    font-weight: 500;
    font-family: monospace, Courier, monospace;
    letter-spacing: 0.1px;
}

.ng-date-subtitle {
    margin: 0 auto 10px auto;
    font-size: 13px;
    color: #475569;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    padding: 4px 14px;
    border-radius: 20px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.02);
}

.ng-date-icon-svg {
    color: #475569;
    flex-shrink: 0;
}

.ng-badge-demo {
    display: inline-block;
    background: #edf2f7;
    border: 1px solid #e2e8f0;
    color: #4a5568;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

.ng-header-middle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex: 1;
    min-width: 200px;
    border-left: 1px solid #edf2f7;
    border-right: 1px solid #edf2f7;
    padding: 0 25px;
}

.ng-header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    text-align: right;
    flex: 1;
    min-width: 220px;
}

.ng-temp-display {
    text-align: center;
}

.ng-current-temp {
    font-size: 52px;
    font-weight: 700;
    line-height: 0.95;
    margin: 0;
    color: #0f172a;
    letter-spacing: -1.5px;
}

.ng-current-temp .unit {
    font-size: 26px;
    font-weight: 600;
    vertical-align: super;
    margin-left: 2px;
    color: #475569;
}

.ng-minmax-temp {
    margin-top: 10px;
    font-size: 13.5px;
    color: #475569;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 2px;
}

.ng-temp-label {
    color: #64748b;
    font-weight: 500;
}

.ng-temp-val {
    color: #0f172a;
    font-weight: 700;
}

.ng-temp-divider {
    color: #cbd5e0;
    font-weight: 300;
    margin: 0 6px;
}

.ng-weather-status {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

.ng-weather-icon-wrapper {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #f8fafc;
    border: 1px solid #edf2f7;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.01);
    transition: all 0.2s ease;
}

.ng-weather-icon-wrapper:hover {
    transform: rotate(10deg) scale(1.05);
}

.ng-weather-icon {
    width: 48px;
    height: 48px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.04));
}

.ng-weather-desc {
    font-size: 14px;
    font-weight: 600;
    color: #0f172a;
    margin-top: 2px;
    letter-spacing: -0.1px;
}

.ng-weather-feels-like {
    font-size: 12.5px;
    color: #64748b;
    font-weight: 500;
    margin-top: 4px;
}

/* Tabs Styling (Professional Outlined Look) */
.ng-weather-tabs {
    display: flex;
    gap: 10px;
    margin: 25px 0;
    overflow-x: auto;
    padding-bottom: 5px;
    border-bottom: 1px solid #edf2f7;
}

.ng-tab-btn {
    background: transparent;
    border: 1px solid transparent;
    color: #718096;
    padding: 10px 18px;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ng-tab-btn:hover {
    color: #2d6a4f;
    background: #f7fafc;
}

.ng-tab-btn.active {
    background: #eaf5ed;
    color: #2d6a4f;
    border-color: #d1e7dd;
}

/* Tab Contents */
.ng-tab-content {
    display: none;
}

.ng-tab-content.active {
    display: block;
}

/* Tab 1: Grid Details (Professional Science Metrics Cards) */
.ng-grid-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.ng-detail-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 22px;
    text-align: center;
    transition: all 0.2s ease;
}

.ng-detail-card:hover {
    border-color: #cbd5e0;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.ng-card-icon-container {
    background: #edf2f7;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px auto;
    color: #4a5568;
}

.ng-svg-detail {
    color: #4a5568;
}

.ng-card-label {
    font-size: 12.5px;
    letter-spacing: 0.5px;
    color: #718096;
    margin-bottom: 5px;
    font-weight: 600;
}

.ng-card-value {
    font-size: 22px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 6px;
}

.ng-card-value .unit {
    font-size: 13px;
    font-weight: 500;
    color: #718096;
}

.ng-card-help {
    font-size: 12px;
    color: #718096;
    line-height: 1.35;
}

/* Tab 2: Agricultural Dashboard Layout (SaaS Agronomist dashboard) */
.ng-agri-dashboard {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.ng-agri-banner {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 25px;
    border-radius: 12px;
    border-width: 1px;
    border-style: solid;
}

.ng-agri-banner.agri-ideal {
    background: #eafbf1;
    border-color: #a2e9bc;
    color: #1b4d3e;
}
.ng-agri-banner.agri-marginal {
    background: #fffbeb;
    border-color: #fde68a;
    color: #854d0e;
}
.ng-agri-banner.agri-unsuitable {
    background: #fef2f2;
    border-color: #fecaca;
    color: #991b1b;
}

.ng-banner-icon-container {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: currentColor;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ng-svg-banner-status {
    color: #ffffff;
}

.ng-banner-text h3 {
    margin: 0 0 4px 0;
    font-size: 18px;
    font-weight: 700;
}

.ng-banner-text p {
    margin: 0;
    font-size: 13.5px;
    opacity: 0.9;
}

/* 3 Spray Parameters Grid */
.ng-grid-agri {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.ng-agri-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 22px;
    transition: all 0.2s ease;
}

.ng-agri-card.agri-border-ideal {
    border-top: 4px solid #2ecc71;
}
.ng-agri-card.agri-border-marginal {
    border-top: 4px solid #f1c40f;
}
.ng-agri-card.agri-border-unsuitable {
    border-top: 4px solid #e74c3c;
}

.ng-agri-card-title {
    margin: 0 0 10px 0;
    font-size: 12.5px;
    letter-spacing: 0.5px;
    color: #718096;
    font-weight: 600;
}

.ng-agri-card-value {
    font-size: 24px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 8px;
}

.ng-agri-card-desc {
    margin: 0 0 12px 0;
    font-size: 13px;
    line-height: 1.45;
    color: #4a5568;
}

.ng-card-scientific-note {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 11.5px;
    color: #718096;
    line-height: 1.35;
}

.ng-card-scientific-note strong {
    color: #4a5568;
}

/* Frost & Evaporation Row (Horizontal grid) */
.ng-grid-agri-two {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
}

.ng-agri-panel {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 22px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.panel-icon-container {
    background: #edf2f7;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4a5568;
    flex-shrink: 0;
}

.panel-body {
    flex-grow: 1;
}

.panel-body h4 {
    margin: 0 0 6px 0;
    font-size: 15px;
    font-weight: 700;
    color: #1a202c;
}

.panel-badge {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.panel-body p {
    margin: 0;
    font-size: 13px;
    color: #4a5568;
    line-height: 1.4;
}

/* Frost Alert Color Badges */
.frost-high {
    border-left: 4px solid #e74c3c;
}
.frost-high .panel-badge {
    background: #fde8e8;
    border: 1px solid #fbd5d5;
    color: #9b1c1c;
}
.frost-medium {
    border-left: 4px solid #f1c40f;
}
.frost-medium .panel-badge {
    background: #fef3c7;
    border: 1px solid #fde68a;
    color: #92400e;
}
.frost-none {
    border-left: 4px solid #2ecc71;
}
.frost-none .panel-badge {
    background: #edfdf3;
    border: 1px solid #def7ec;
    color: #03543f;
}

/* Evaporation Water badges */
.evapo-high {
    border-left: 4px solid #e74c3c;
}
.evapo-high .panel-badge {
    background: #fde8e8;
    border: 1px solid #fbd5d5;
    color: #9b1c1c;
}
.evapo-medium {
    border-left: 4px solid #f1c40f;
}
.evapo-medium .panel-badge {
    background: #fef3c7;
    border: 1px solid #fde68a;
    color: #92400e;
}
.evapo-low {
    border-left: 4px solid #2ecc71;
}
.evapo-low .panel-badge {
    background: #edfdf3;
    border: 1px solid #def7ec;
    color: #03543f;
}

/* Tab 3: Forecast Layout (Crisp Horizontal rows) */
.ng-forecast-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ng-forecast-row {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    transition: all 0.15s ease;
}

.ng-forecast-row:hover {
    background: #ffffff;
    border-color: #cbd5e0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.ng-forecast-date {
    display: flex;
    flex-direction: column;
    min-width: 120px;
}

.ng-forecast-date .day {
    font-size: 15px;
    font-weight: 700;
    color: #1a202c;
}

.ng-forecast-date .num {
    font-size: 13px;
    color: #718096;
    margin-top: 2px;
}

.ng-forecast-info {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-grow: 1;
}

.forecast-icon {
    width: 40px;
    height: 40px;
}

.forecast-desc {
    font-size: 13.5px;
    font-weight: 500;
    color: #4a5568;
}

.ng-forecast-temp {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    min-width: 90px;
}

.ng-forecast-temp .temp {
    font-size: 16.5px;
    font-weight: 700;
    color: #1a202c;
}

.ng-forecast-temp .humidity {
    font-size: 12px;
    color: #718096;
    margin-top: 2px;
}

.ng-forecast-badges {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 160px;
    align-items: flex-end;
}

.badge-mini-agri {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-align: center;
    border-width: 1px;
    border-style: solid;
}

.badge-mini-agri.agri-ideal {
    background: #eafbf1;
    border-color: #a2e9bc;
    color: #1b4d3e;
}

.badge-mini-agri.agri-marginal {
    background: #fffbeb;
    border-color: #fde68a;
    color: #854d0e;
}

.badge-mini-agri.agri-unsuitable {
    background: #fef2f2;
    border-color: #fecaca;
    color: #991b1b;
}

.badge-frost-warning {
    background: #fde8e8;
    border: 1px solid #fbd5d5;
    color: #9b1c1c;
}

/* Dashboard Footer */
.ng-dashboard-footer {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #718096;
    margin-top: 25px;
    padding-top: 15px;
    border-top: 1px solid #edf2f7;
    font-weight: 500;
}

/* Error box view fallback */
.novagreen-error-box {
    background: #fff5f5;
    border: 1px solid #fed7d7;
    color: #c53030;
    padding: 16px;
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 13.5px;
    margin: 20px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ng-err-svg {
    color: #c53030;
    flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .novagreen-weather-dashboard {
        padding: 20px;
        margin: 15px auto;
    }
    
    .ng-weather-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .ng-header-right {
        width: 100%;
        justify-content: space-between;
        border-top: 1px solid #edf2f7;
        padding-top: 15px;
    }

    .ng-weather-status {
        border-left: none;
        padding-left: 0;
    }

    .ng-temp-display {
        text-align: left;
    }

    .ng-forecast-row {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px;
        gap: 10px;
    }

    .ng-forecast-info {
        margin: 5px 0;
        width: 100%;
    }

    .ng-forecast-temp {
        align-items: flex-start;
        width: 100%;
    }

    .ng-forecast-badges {
        align-items: flex-start;
        width: 100%;
    }
    
    .ng-grid-agri-two {
        grid-template-columns: 1fr;
    }
}

/* Sleek Minimal Geolocation Locate Me Button */
.ng-header-locate-container {
    display: flex;
    justify-content: flex-start;
    margin: 2px 0 0 50px;
}

.ng-btn-locate {
    background: transparent;
    border: none;
    color: #64748b;
    padding: 2px 0;
    font-size: 12px;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.2s ease;
    border-bottom: 1px dotted #cbd5e1;
    box-shadow: none;
    outline: none;
}

.ng-btn-locate:hover {
    color: #2d6a4f;
    border-bottom-color: #2d6a4f;
    background: transparent;
    box-shadow: none;
}

.ng-btn-locate svg {
    transition: transform 0.2s ease;
}

.ng-btn-locate:hover svg {
    transform: scale(1.1);
}

.ng-btn-loading {
    opacity: 0.85;
    pointer-events: none;
}

/* Loading Overlay Animation */
.ng-loading-state {
    opacity: 0.55;
    pointer-events: none;
    cursor: wait;
    transition: opacity 0.25s ease;
}

/* Shake Animation for locate errors */
.ng-shake {
    animation: shake 0.4s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-4px); }
    40%, 80% { transform: translateX(4px); }
}

@media (max-width: 768px) {
    .ng-weather-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }
    .ng-header-left {
        align-items: center;
        text-align: center;
        flex: none;
    }
    .ng-location-header-row {
        justify-content: center;
    }
    .ng-header-locate-container {
        width: auto;
        margin: 8px auto 0 auto;
        justify-content: center;
    }
    .ng-header-middle {
        align-items: center;
        text-align: center;
        flex: none;
        border-top: 1px solid #edf2f7;
        border-left: none;
        border-right: none;
        padding: 15px 0 0 0;
        width: 100%;
    }
    .ng-header-right {
        align-items: center;
        text-align: center;
        flex: none;
        border-top: 1px solid #edf2f7;
        padding-top: 15px;
        width: 100%;
    }
    .ng-weather-status {
        align-items: center;
        text-align: center;
    }
}

/* Mini Header Weather Strip Styles */
.ng-weather-mini-container {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.ng-mini-divider {
    width: 1px;
    height: 20px;
    background: #e2e8f0;
    margin: 0 4px;
}

.ng-mini-weather-info {
    display: flex;
    align-items: center;
    gap: 6px;
}

.ng-mini-icon-wrapper {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f8fafc;
    border: 1px solid #edf2f7;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.01);
}

.ng-mini-icon {
    width: 28px;
    height: 28px;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.02));
}

.ng-mini-temp {
    font-size: 14.5px;
    font-weight: 700;
    color: #475569;
    letter-spacing: -0.2px;
}

.ng-mini-temp .unit {
    font-size: 10px;
    font-weight: 600;
    vertical-align: super;
    margin-left: 1px;
    color: #64748b;
}

.ng-mini-search-trigger {
    background: transparent;
    border: none;
    color: #64748b;
    padding: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
}

.ng-mini-search-trigger:hover {
    background: #f1f5f9;
    color: #0f172a;
    transform: scale(1.05);
}

.ng-mini-search-trigger svg {
    transition: transform 0.2s ease;
}

.ng-mini-search-trigger:hover svg {
    transform: scale(1.05);
}

/* Dropdown Search Popover */
.ng-mini-search-popover {
    position: absolute;
    top: 100%;
    right: 0;
    width: 260px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 12px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
    z-index: 999999;
    margin-top: 8px;
    display: none;
    opacity: 0;
    transform: translateY(-8px);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.ng-mini-search-popover.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.ng-mini-search-box {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.ng-mini-search-input {
    width: 100%;
    padding: 8px 36px 8px 12px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 13px;
    font-family: inherit;
    color: #1e293b;
    outline: none;
    transition: all 0.2s ease;
    background: #f8fafc;
}

.ng-mini-search-input:focus {
    border-color: #2d6a4f;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.08);
}

.ng-mini-search-submit {
    position: absolute;
    right: 10px;
    background: transparent;
    border: none;
    color: #64748b;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.15s ease;
}

.ng-mini-search-submit:hover {
    color: #2d6a4f;
}

.ng-mini-search-submit svg {
    color: inherit;
}

.ng-menu-weather-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    margin-left: 15px !important;
}

/* Adjustments to dropdown menu links */
.ng-menu-weather-item a {
    display: none !important;
}

/* Premium SVG Weather Icons Custom Colors and Outline Styling */
.ng-weather-icon-svg-main {
    color: #475569;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ng-mini-weather-icon-svg {
    color: #475569;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ng-forecast-icon-svg {
    color: #475569;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Custom color profiles matching scientific weather conditions */
/* Clear sky (Sun): warm gold/amber */
.ng-svg-weather-sun {
    color: #d97706 !important;
}

/* Clear sky (Moon): indigo */
.ng-svg-weather-clear-night {
    color: #4f46e5 !important;
}

/* Clouds: deep slate gray */
.ng-svg-weather-cloudy,
.ng-svg-weather-few-clouds {
    color: #64748b !important;
}

.ng-svg-weather-few-clouds-night {
    color: #475569 !important;
}

/* Rain: fresh water sky-blue */
.ng-svg-weather-rain {
    color: #0284c7 !important;
}

/* Thunderstorm: electric gold */
.ng-svg-weather-thunder {
    color: #ca8a04 !important;
}

/* Snow: cold ice-blue */
.ng-svg-weather-snow {
    color: #06b6d4 !important;
}

/* Mist: soft teal-gray */
.ng-svg-weather-mist {
    color: #0d9488 !important;
}

/* Keep wrapper alignment clean with vector icons */
.ng-forecast-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}



