
    :root{
      --bg:#071018;
      --card:#0b1723;
      --glass:rgba(255,255,255,0.06);
      --border:rgba(255,255,255,0.10);
      --text:#e7f2ff;
      --muted:rgba(231,242,255,0.72);
      --blue:#2b85ff;
      --green:#00ff88;
      --yellow:#ffcc00;
      --red:#e30a17;
      --shadow:0 16px 60px rgba(0,0,0,0.45);
      --radius:18px;
    }

    
  /* 🌞 DAY MODE – WEATHERWISE SKY THEME (POLISHED) */
body[data-theme="day"]{
  /* Base surfaces */
  --bg: #b2eab3;                 /* soft sky blue */
  --card: #fdfefe;               /* cloud white */
  --glass: rgba(0, 40, 90, 0.05);
  --border: rgba(0, 40, 90, 0.14);

  /* Text */
  --text: #0b1f33;               /* deep navy */
  --muted: rgba(11, 31, 51, 0.65);

  /* Accents */
  --blue: #2b6cb0;               /* calm weather blue */
  --green: #0bbf7a;
  --yellow: #f4b400;
  --red: #d93025;

  /* Effects */
  --shadow: 0 16px 40px rgba(0, 30, 60, 0.15);

  /* Background */
  background:
    radial-gradient(1200px 600px at 20% 0%, rgba(43,108,176,0.18), transparent 55%),
    radial-gradient(900px 500px at 90% 10%, rgba(11,191,122,0.12), transparent 55%),
    radial-gradient(900px 500px at 80% 95%, rgba(244,180,0,0.12), transparent 55%),
    var(--bg);
}
  
/* 🌙 NIGHT MODE (already default, but explicit) */
body[data-theme="night"]{
  --bg:#071018;
  --card:#0b1723;
  --glass:rgba(255,255,255,0.06);
  --border:rgba(255,255,255,0.10);
  --text:#e7f2ff;
  --muted:rgba(231,242,255,0.72);
  --shadow:0 16px 60px rgba(0,0,0,0.45);
}

body[data-theme="day"] .card:hover{
  transform: translateY(-6px);
  box-shadow:
    0 18px 40px rgba(255,180,0,0.25),
    0 10px 20px rgba(0,0,0,0.15);
}

/* 🌞 Day mode card styling */
body[data-theme="day"] .card,
body[data-theme="day"] .national-card,
body[data-theme="day"] .slider,
body[data-theme="day"] .wx-map-section{
  background:
    linear-gradient(
      180deg,
      rgba(11, 141, 171, 0.92),
      rgba(113, 175, 237, 0.85)
    );
  backdrop-filter: blur(10px);
}


    *{box-sizing:border-box}
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans";
      background: radial-gradient(1200px 600px at 20% 0%, rgba(43,133,255,0.22), transparent 55%),
                  radial-gradient(900px 500px at 100% 10%, rgba(0,255,136,0.10), transparent 55%),
                  radial-gradient(900px 500px at 80% 95%, rgba(255,204,0,0.12), transparent 55%),
                  var(--bg);
      color:var(--text);
      padding:22px;
    }

    .container{max-width:1250px;margin:0 auto;}

    header{
      background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
      border:1px solid var(--border);
      border-radius:var(--radius);
      box-shadow:var(--shadow);
      padding:18px;
      overflow:hidden;
      position:relative;
    }

    .header-logo img{
      width:100%;
      max-height:540px;
      object-fit:contain;
      opacity:0.95;
      filter: drop-shadow(0 10px 30px rgba(0,0,0,0.35));
    }
/* ✅ Forecast Alerts Panel Scroll */
#forecastAlerts {
  max-height: 520px;          /* change height as you want */
  overflow-y: auto;
  padding-right: 6px;
}

/* ✅ Smooth scrollbar style */
#forecastAlerts::-webkit-scrollbar {
  width: 8px;
}
#forecastAlerts::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.18);
  border-radius: 10px;
}
#forecastAlerts::-webkit-scrollbar-thumb:hover {
  background: rgba(255,255,255,0.28);
}
    .last-update{
      margin-top:8px;
      font-weight:700;
      color:var(--muted);
      display:flex;
      align-items:center;
      gap:10px;
    }

    .dev-credit{
      margin-top:12px;
      display:flex;
      gap:12px;
      align-items:center;
      padding:12px 14px;
      border-radius:14px;
      border:1px solid var(--border);
      background:rgba(0,0,0,0.15);
      backdrop-filter: blur(10px);
    }

    .dev-flag{
      font-size:28px;
      filter: drop-shadow(0 10px 15px rgba(0,0,0,0.4));
    }
    .dev-top{font-weight:900;font-size:14px;color:#fff;}
    .dev-name{font-size:13px;color:var(--muted);}
    .dev-name span{color:#fff;font-weight:900;}
    .dev-sub{font-size:12px;color:var(--muted);margin-top:2px;}

    /* National Card */
    .national-card{
      margin-top:16px;
      display:grid;
      grid-template-columns: 1.6fr 0.9fr;
      gap:14px;
      padding:16px;
      border-radius:var(--radius);
      border:1px solid var(--border);
      background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
      box-shadow: var(--shadow);
      position:relative;
      overflow:hidden;
    }

    .national-card.danger-mode{
      animation: pulseDanger 1.1s infinite;
      border-color: rgba(227,10,23,0.65);
    }

    @keyframes pulseDanger{
      0%{box-shadow:0 0 0 rgba(227,10,23,0.0), var(--shadow);}
      50%{box-shadow:0 0 40px rgba(227,10,23,0.25), var(--shadow);}
      100%{box-shadow:0 0 0 rgba(227,10,23,0.0), var(--shadow);}
    }

    .national-title{font-weight:900;font-size:15px;color:#fff;display:flex;align-items:center;gap:10px;}
    .national-score{margin-top:8px;font-size:52px;font-weight:950;letter-spacing:-1px;}
    .national-score small{font-size:14px;color:var(--muted);margin-left:8px;font-weight:800;}
    .national-level{
      margin-top:8px;
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding:8px 12px;
      border-radius:999px;
      background:rgba(0,0,0,0.20);
      border:1px solid rgba(255,255,255,0.14);
      font-weight:900;
      width:max-content;
    }

    .national-meter{
      margin-top:10px;
      height:12px;
      border-radius:999px;
      background:rgba(0,0,0,0.25);
      border:1px solid rgba(255,255,255,0.08);
      overflow:hidden;
    }
    .national-fill{
      height:100%;
      width:0%;
      border-radius:999px;
      transition: width 450ms ease;
    }

    .national-meta{
      margin-top:12px;
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      color:var(--muted);
      font-weight:700;
      font-size:13px;
    }

    .threat-box{
      border:1px solid var(--border);
      background:rgba(0,0,0,0.18);
      border-radius:16px;
      padding:12px 12px;
    }
    .threat-title{font-size:12px;color:var(--muted);font-weight:800;}
    .threat-value{font-size:14px;color:#fff;font-weight:950;margin-top:6px;}

    .muted-note{color:var(--muted);font-size:12px;font-weight:700;}

    /* Controls */
    .controls{
      margin-top:14px;
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      align-items:center;
      justify-content:space-between;
    }
    .filters{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      background:rgba(255,255,255,0.04);
      border:1px solid var(--border);
      padding:10px 12px;
      border-radius:16px;
    }
    .filter-item{
      display:flex;
      align-items:center;
      gap:8px;
      font-weight:800;
      color:var(--muted);
      font-size:13px;
    }

    .right-actions{
      display:flex;
      gap:10px;
      align-items:center;
      flex-wrap:wrap;
    }
    .live-pill{
      display:flex;
      align-items:center;
      gap:10px;
      padding:10px 14px;
      border-radius:999px;
      border:1px solid var(--border);
      background:rgba(0,0,0,0.18);
      font-weight:900;
      color:#fff;
    }
    .dot{
      width:10px;height:10px;border-radius:999px;
      background:var(--green);
      box-shadow:0 0 12px rgba(0,255,136,0.7);
      animation: blink 1.1s infinite;
    }
    @keyframes blink{
      0%{opacity:1}
      50%{opacity:0.35}
      100%{opacity:1}
    }

    .btn{
      border:none;
      padding:10px 14px;
      border-radius:14px;
      font-weight:900;
      cursor:pointer;
      transition: transform .12s ease, opacity .12s ease;
      display:flex;
      align-items:center;
      gap:10px;
      user-select:none;
    }
    .btn:active{transform:scale(0.97)}
    .btn-primary{
      background:linear-gradient(180deg, rgba(43,133,255,1), rgba(43,133,255,0.82));
      color:white;
      box-shadow: 0 12px 30px rgba(43,133,255,0.28);
    }
    .btn-secondary{
      background:rgba(255,255,255,0.08);
      color:#fff;
      border:1px solid var(--border);
    }

    /* Slider */
    .slider{
      margin-top:14px;
      border-radius:var(--radius);
      border:1px solid var(--border);
      background:rgba(255,255,255,0.04);
      padding:14px;
      box-shadow:var(--shadow);
    }
    .slider-top{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
    }
    .slider-top h2{
      margin:0;
      font-size:16px;
      font-weight:950;
      display:flex;
      gap:10px;
      align-items:center;
      color:#fff;
    }
    .count-badge{
      min-width:34px;
      height:34px;
      display:grid;
      place-items:center;
      font-weight:950;
      border-radius:12px;
      border:1px solid var(--border);
      background:rgba(0,0,0,0.18);
    }

    .marquee{
      margin-top:12px;
      overflow:hidden;
      border-radius:14px;
      border:1px solid rgba(255,255,255,0.10);
      background:rgba(0,0,0,0.14);
    }
    .track{
      display:flex;
      gap:18px;
      padding:12px;
      width:max-content;
      animation: scroll 50s linear infinite;
    }
    .marquee:hover .track{animation-play-state:paused;}

    @keyframes scroll{
      from{transform:translateX(0)}
      to{transform:translateX(-50%)}
    }

    .slide{
      display:flex;
      gap:12px;
      align-items:flex-start;
      min-width:340px;
      max-width:340px;
      height: 110px;
      padding:12px;
      border-radius:16px;
      border:1px solid rgba(255,255,255,0.10);
      background:rgba(255,255,255,0.04);
    }
    .s-icon{
      width:38px;height:38px;border-radius:14px;
      display:grid;place-items:center;
      background:rgba(0,0,0,0.18);
      border:1px solid rgba(255,255,255,0.10);
      font-size:18px;
    }
    .s-title{font-weight:950;color:#fff;font-size:16px;}
    .s-desc{font-weight:750;color:var(--muted);font-size:14px;margin-top:3px;line-height:1.25;}

    /* severity colors */
    .severity-critical{border-color: rgba(227,10,23,0.65); background: rgba(227,10,23,0.08);}
    .severity-high{border-color: rgba(255,120,0,0.65); background: rgba(255,120,0,0.08);}
    .severity-medium{border-color: rgba(255,204,0,0.55); background: rgba(255,204,0,0.08);}
    .severity-low{border-color: rgba(0,255,136,0.45); background: rgba(0,255,136,0.06);}

    /* Dashboard */
    .dashboard{
      margin-top:14px;
      display:grid;
      grid-template-columns: 1.25fr 1fr;
      gap:14px;
    }
    .card{
       position: relative;
  overflow: hidden;
      border-radius:var(--radius);
      border:1px solid var(--border);
      background:rgba(255,255,255,0.04);
      padding:14px;
      box-shadow:var(--shadow);
      overflow:hidden;
    }

    .card-title{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:10px;
    }
    .card-title h2{
      margin:0;
      font-weight:950;
      font-size:18px;
      color:#fff;
      display:flex;
      align-items:center;
      gap:10px;
    }

    /* Map */
    #windyWrap{
      margin-top:12px;
      border-radius:16px;
      overflow:hidden;
      border:1px solid rgba(255,255,255,0.10);
      background:rgba(0,0,0,0.14);
      min-height:440px;
      position:relative;
    }
    iframe#windyMap{
      width:100%;
      height:440px;
      border:0;
      display:block;
      background:transparent;
    }
    .map-placeholder{
      position:absolute;
      inset:0;
      display:grid;
      place-items:center;
      text-align:center;
      padding:18px;
    }

  /* ===================== */
/* ALERTS / FORECAST STYLE */
/* ===================== */

.alerts-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}


/* main card */

.forecast-item {

  background: linear-gradient(
    180deg,
    rgba(20,30,50,0.85),
    rgba(10,15,25,0.9)
  );

  border-radius: 14px;

  padding: 14px;

  border-left: 5px solid #00ff9c;

  backdrop-filter: blur(6px);

  box-shadow:
    0 0 8px rgba(0,200,255,0.25),
    inset 0 0 6px rgba(255,255,255,0.03);

  transition: 0.25s ease;

  position: relative;

  overflow: hidden;

}


/* glow line animation */

.forecast-item::after {

  content: "";

  position: absolute;

  top: 0;
  left: -100%;

  width: 100%;
  height: 100%;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(0,255,255,0.15),
    transparent
  );

  transition: 0.4s;

}


.forecast-item:hover::after {
  left: 100%;
}


/* hover */

.forecast-item:hover {

  transform: translateY(-2px) scale(1.01);

  box-shadow:
    0 0 14px rgba(0,200,255,0.5),
    0 0 4px rgba(0,255,200,0.4);

}



/* ===================== */
/* SEVERITY COLORS */
/* ===================== */

.forecast-item.low {

  border-left: 5px solid #00ff9c;

  box-shadow:
    0 0 6px rgba(0,255,150,0.4);

}


.forecast-item.medium {

  border-left: 5px solid #ffd000;

  box-shadow:
    0 0 6px rgba(255,200,0,0.5);

}


.forecast-item.high {

  border-left: 5px solid #ff3b3b;

  box-shadow:
    0 0 8px rgba(255,60,60,0.6);

}



/* ===================== */
/* text style */
/* ===================== */

.alert-title {

  font-weight: 600;

  font-size: 15px;

  color: #fff;

  margin-bottom: 4px;

}


.alert-meta {

  font-size: 13px;

  color: #b8c7e0;

  opacity: 0.9;

}


/* empty note */

.muted-note {

  background: rgba(20,30,50,0.7);

  padding: 12px;

  border-radius: 10px;

  text-align: center;

  color: #9fb4d6;

  font-size: 14px;

}
    .alert-icon{
      width:38px;height:38px;border-radius:14px;
      display:grid;place-items:center;
      background:rgba(255,255,255,0.05);
      border:1px solid rgba(255,255,255,0.10);
      font-size:18px;
    }
    .alert-title{font-weight:950;color:#fff;font-size:13px;}
    .alert-meta{color:var(--muted);font-size:15px;font-weight:750;margin-top:3px;line-height:1.25;}

    /* Cities grid */
    .cities-head{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:12px;
      flex-wrap:wrap;
    }
    .cities-grid{
      margin-top:14px;
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:12px;
    }
    .city-card{
      border-radius:18px;
      border:1px solid rgba(255,255,255,0.10);
      background:rgba(0,0,0,0.16);
      padding:12px;
      cursor:pointer;
      transition: transform .12s ease, border-color .12s ease;
    }

    
    .city-card:hover{
      transform:translateY(-2px);
      border-color:rgba(43, 255, 181, 0.4);
    
  box-shadow:
    0 10px 10px rgba(239, 223, 10, 0.979),
    0 10px 20px rgba(239, 232, 17, 0.53);
    }
    .city-name{font-weight:950;color:#fff;font-size:20px;}
    .city-temp{font-weight:950;font-size:30px;margin-top:12px;}
    .city-weather{margin-top:6px;color:var(--muted);font-weight:850;font-size:30px;}
    .city-details{margin-top:6px;color:var(--muted);font-weight:750;font-size:14px;}

    /* risk meter */
    .risk-row{margin-top:10px;}
    .risk-top{display:flex;justify-content:space-between;align-items:center;color:var(--muted);font-weight:850;font-size:12px;}
    .risk-badge{
      padding:6px 10px;
      border-radius:999px;
      border:1px solid rgba(255,255,255,0.10);
      background:rgba(0,0,0,0.18);
      color:#fff;
      font-weight:950;
    }
    .risk-badge.high{border-color: rgba(227,10,23,0.55);}
    .risk-badge.medium{border-color: rgba(255,204,0,0.55);}
    .risk-badge.low{border-color: rgba(0,255,136,0.45);}

    .risk-meter{
      margin-top:8px;
      height:10px;border-radius:999px;
      overflow:hidden;
      background:rgba(255,255,255,0.06);
      border:1px solid rgba(255,255,255,0.10);
    }
    .risk-fill{
      height:100%;
      width:0%;
      border-radius:999px;
      transition: width 350ms ease;
    }


    .searchbox{
  position: relative;
  width: min(520px, 100%);
}

#citySearch{
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.35);
  color: #fff;
  outline: none;
  font-weight: 800;
}

/* ✅ DROPDOWN FIX */
.dropdown{
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 999999; /* ✅ must be HIGH */
  display: none;

  max-height: 260px;
  overflow-y: auto;

  background: rgba(10,16,26,0.98);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 8px;

  box-shadow: 0 18px 55px rgba(0,0,0,0.6);
  backdrop-filter: blur(10px);
}

.dropdown button{
  width: 100%;
  text-align: left;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.06);
  color: #fff;
  cursor: pointer;
  font-weight: 800;
  margin-bottom: 6px;
}

.dropdown button:hover{
  background: rgba(255,122,0,0.16);
  border-color: rgba(255,122,0,0.35);
}

.dropdown button:last-child{
  margin-bottom: 0;
}


    /* Loader */
    .loading-overlay{
      position:fixed;
      inset:0;
      display:none;
      align-items:center;
      justify-content:center;
      flex-direction:column;
      background: rgba(0,0,0,0.68);
      backdrop-filter: blur(8px);
      z-index:9999;
      text-align:center;
      padding:20px;
    }
    .spinner{
      width:46px;height:46px;border-radius:50%;
      border:5px solid rgba(255,255,255,0.14);
      border-top-color: rgba(43,133,255,0.95);
      animation: spin 0.9s linear infinite;
      margin-bottom:12px;
    }
    @keyframes spin{to{transform:rotate(360deg)}}
    #bar{
      width:280px;
      height:10px;
      border-radius:999px;
      border:1px solid rgba(255,255,255,0.12);
      background:rgba(255,255,255,0.05);
      overflow:hidden;
      margin-top:12px;
    }
    #bar > div{
      width:0%;
      height:100%;
      border-radius:999px;
      background:rgba(43,133,255,0.95);
      transition: width 300ms ease;
    }

    /* Modal */
    .modal-backdrop{
      position:fixed;
      inset:0;
      display:none;
      align-items:center;
      justify-content:center;
      background: rgba(0,0,0,0.64);
      z-index:99999;
      padding:20px;
    }
    .modal{
      width:min(560px, 95vw);
      border-radius:18px;
      border:1px solid rgba(255,255,255,0.14);
      background:rgba(8,16,23,0.92);
      box-shadow:var(--shadow);
      overflow:hidden;
    }
    .modal-top{
      padding:14px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      border-bottom:1px solid rgba(255,255,255,0.10);
    }
    .modal-title{font-weight:950;color:#fff;display:flex;gap:10px;align-items:center;}
    .modal-close{
      background:rgba(255,255,255,0.06);
      border:1px solid rgba(255,255,255,0.14);
      color:#fff;
      padding:8px 12px;
      border-radius:12px;
      cursor:pointer;
      font-weight:900;
    }
    .modal-body{padding:14px;color:var(--muted);font-weight:800;font-size:13px;}
    .grid2{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:10px;
    }
    .mini{
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(255,255,255,0.10);
      background: rgba(255,255,255,0.04);
      color:#fff;
      font-weight:900;
      font-size:13px;
    }

    /* AI Chat Widget */
    .ai-widget{
      position:fixed;
      right:18px;
      bottom:18px;
      width:min(380px, 92vw);
      border-radius:18px;
      border:1px solid rgba(255,255,255,0.14);
      background:rgba(6,12,18,0.92);
      box-shadow:0 22px 70px rgba(0,0,0,0.55);
      overflow:hidden;
      z-index:999999;
    }
    
.ai-top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 12px;
  border-radius: 14px 14px 0 0;
  background: #0d1b2a;
  color: #fff;
  font-weight: 800;
}

.ai-min-btn{
  border: none;
  cursor: pointer;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-weight: 900;
}

.ai-min-btn:hover{
  background: rgba(255,255,255,0.22);
}

.ai-content{
  background: #0b1220;
  border-radius: 0 0 14px 14px;
  overflow: hidden;
}

.ai-widget.minimized .ai-body,
.ai-widget.minimized .ai-bottom{
  display:none;
}

.ai-widget.minimized{
  width:260px;
}


/* ✅ Optional: when minimized it becomes small bar */
.ai-chat.minimized{
  width: 260px;
}
    .ai-title{
      display:flex;align-items:center;gap:10px;
      font-weight:950;color:#fff;
    }
    .ai-title small{display:block;color:var(--muted);font-weight:800;font-size:11px;margin-top:2px;}
    .ai-actions{display:flex;gap:8px;align-items:center;}
    .ai-mini-btn{
      border:1px solid rgba(255,255,255,0.14);
      background:rgba(255,255,255,0.05);
      color:#fff;
      padding:8px 10px;
      border-radius:12px;
      cursor:pointer;
      font-weight:900;
      display:flex;
      align-items:center;
      gap:8px;
    }
    .ai-body{
      height:280px;
      overflow:auto;
      padding:12px;
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .msg{
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(255,255,255,0.10);
      max-width:85%;
      font-weight:850;
      font-size:12px;
      line-height:1.25;
      color:#fff;
    }
    .msg.user{align-self:flex-end;background:rgba(43,133,255,0.16);border-color:rgba(43,133,255,0.35);}
    .msg.bot{align-self:flex-start;background:rgba(0,0,0,0.20);}
    .ai-bottom{
      border-top:1px solid rgba(255,255,255,0.10);
      padding:10px;
      display:flex;
      gap:8px;
      align-items:center;
    }
    .ai-input{
      flex:1;
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(255,255,255,0.14);
      background:rgba(0,0,0,0.18);
      color:#fff;
      font-weight:850;
      outline:none;
    }
    .ai-send{
      padding:10px 12px;
      border-radius:14px;
      background:rgba(43,133,255,0.95);
      border:0;
      color:#fff;
      font-weight:950;
      cursor:pointer;
    }

    @media (max-width: 980px){
      .dashboard{grid-template-columns:1fr;}
      .cities-grid{grid-template-columns:1fr 1fr;}
      .national-card{grid-template-columns:1fr;}
    }
    @media (max-width: 520px){
      .cities-grid{grid-template-columns:1fr;}
      .slide{min-width:280px;max-width:280px;}
      .grid2{grid-template-columns:1fr;}
    }

  /* =========================
   WEATHERWISE STYLE MAP UI
========================= */
.wx-map-section{
  margin-top: 16px;
  border-radius: 18px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(8,12,18,0.78);
  box-shadow: 0 18px 55px rgba(0,0,0,0.45);
}

.wx-map-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.wx-map-left{
  min-width: 230px;
}

.wx-map-title{
  display:flex;
  align-items:center;
  gap: 10px;
  font-weight: 900;
  font-size: 18px;
  color: #fff;
}

.wx-dot{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff7a00;
  box-shadow: 0 0 0 6px rgba(255,122,0,0.18);
}

.wx-map-sub{
  margin-top: 3px;
  font-size: 12px;
  color: rgba(255,255,255,0.65);
}

.wx-map-actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Buttons */
.wx-btn{
  border: none;
  cursor:pointer;
  padding: 10px 14px;
  border-radius: 12px;
  font-weight: 800;
  transition: 0.18s ease;
}

.wx-btn-ghost{
  background: rgba(255,255,255,0.10);
  color: #fff;
}
.wx-btn-ghost:hover{
  background: rgba(255,255,255,0.16);
}

.wx-btn-primary{
  background: linear-gradient(135deg, #ff7a00, #ffb347);
  color: #0b1220;
}
.wx-btn-primary:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(255,122,0,0.22);
}

/* Overlay pills */
.wx-overlay-controls{
  display:flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.wx-pill{
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  cursor:pointer;
  transition: 0.18s ease;
}

.wx-pill:hover{
  background: rgba(255,255,255,0.14);
}

.wx-pill.active{
  background: rgba(255,122,0,0.18);
  border-color: rgba(255,122,0,0.35);
  color: #fff;
}

/* Map */
.wx-map-wrap{
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
   height: 750px;
}

.wx-leaflet-map{
  height: 100%;
  width: 100%;
}

/* Legend */
.wx-map-legend{
  position:absolute;
  left: 12px;
  bottom: 12px;
  background: rgba(10,16,26,0.75);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 10px 12px;
  color: rgba(255,255,255,0.85);
  display:flex;
  flex-direction: column;
  gap: 6px;
  backdrop-filter: blur(10px);
}

.wx-legend-item{
  display:flex;
  align-items:center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
}

.wx-legend-dot{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff7a00;
  box-shadow: 0 0 0 4px rgba(255,122,0,0.20);
}

.wx-legend-note{
  font-size: 11px;
  color: rgba(255,255,255,0.6);
}

/* =========================
   MARKER M (PULSING)
========================= */
.map-marker-m{
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #ff7a00;
  color: #0b1220;
  font-weight: 900;
  display:flex;
  align-items:center;
  justify-content:center;
  border: 2px solid rgba(255,255,255,0.75);
  box-shadow: 0 16px 32px rgba(0,0,0,0.35);
  position: relative;
  font-size: 16px;
}

.map-marker-m::after{
  content:"";
  position:absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid rgba(255,122,0,0.35);
  animation: pulseM 1.4s infinite ease-out;
}

@keyframes pulseM{
  0%{ transform: scale(0.75); opacity: 0.9; }
  100%{ transform: scale(1.4); opacity: 0; }
}

/* Leaflet popup polish */
.leaflet-popup-content-wrapper{
  border-radius: 14px !important;
  background: rgba(10,16,26,0.95) !important;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,0.14);
}
.leaflet-popup-tip{
  background: rgba(10,16,26,0.95) !important;
}
.leaflet-popup-content{
  margin: 10px 12px !important;
  font-size: 12px;
  line-height: 1.35;
}

/* =========================
   MODAL
========================= */
.wx-modal{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display:none;
  align-items:center;
  justify-content:center;
  z-index: 9999999;
}

.wx-modal.show{
  display:flex;
}

.wx-modal-card{
  width: min(420px, 92vw);
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(8,12,18,0.95);
  box-shadow: 0 30px 90px rgba(0,0,0,0.55);
  overflow:hidden;
}

.wx-modal-top{
  padding: 14px 14px;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.wx-modal-title{
  font-weight: 900;
  font-size: 16px;
  color: #fff;
}

.wx-modal-sub{
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  margin-top: 3px;
}

.wx-modal-close{
  border:none;
  cursor:pointer;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(255,255,255,0.10);
  color: #fff;
  font-weight: 900;
}

.wx-modal-body{
  padding: 14px;
}

.wx-label{
  display:block;
  font-size: 12px;
  font-weight: 800;
  color: rgba(255,255,255,0.85);
  margin-bottom: 6px;
}

.wx-input{
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color: #fff;
  outline: none;
}

.wx-input:focus{
  border-color: rgba(255,122,0,0.55);
  box-shadow: 0 0 0 5px rgba(255,122,0,0.12);
}

.wx-hint{
  margin-top: 10px;
  font-size: 12px;
  color: rgba(255,255,255,0.65);
}

.wx-modal-actions{
  margin-top: 14px;
  display:flex;
  gap: 10px;
  justify-content:flex-end;
  flex-wrap: wrap;
}

/* Responsive */
@media(max-width:560px){
  .wx-leaflet-map{ height: 380px; }
  .wx-map-title{ font-size: 16px; }
}
.storm-cell{
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.75);
    box-shadow: 0 0 25px rgba(0,0,0,0.4);
  }

  .storm-green{ background: rgba(0,255,120,0.28); }
  .storm-yellow{ background: rgba(255,215,0,0.28); }
  .storm-orange{ background: rgba(255,140,0,0.32); }
  .storm-red{ background: rgba(255,0,0,0.32); }
  .storm-purple{ background: rgba(150,0,255,0.35); }
/* ✅ Map container must be relative */

#reportMap{
  width: 100%;
  height: 750px; /* ✅ important */
  border-radius: 18px;
  overflow: hidden;
}

/* TOP BAR */
.wx-hud-top{
  position:absolute;
  top:0;
  left:0;
  right:0;
  z-index:9999;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:10px 16px;
  background: linear-gradient(90deg, rgba(100,0,150,0.85), rgba(20,20,30,0.92));
  border-bottom: 1px solid rgba(255,255,255,0.12);
  color:#fff;
  font-family: system-ui, Arial;
}

.wx-hud-headline{
  font-weight:900;
  letter-spacing:1px;
  text-transform: uppercase;
  font-size:14px;
  max-width:78%;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.wx-hud-score{
  display:flex;
  align-items:center;
  gap:10px;
}

.wx-hud-number{
  font-weight:900;
  font-size:18px;
}

.wx-hud-mini-chart{
  width:70px;
  height:18px;
  background: rgba(0,255,150,0.12);
  border:1px solid rgba(0,255,150,0.35);
  border-radius:6px;
}

/* RIGHT PANEL */
.wx-hud-right{
  position:absolute;
  top:158px;
  right:14px;
  width:320px;
  z-index:9999;
  background: rgba(0,0,0,0.65);
  border:1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  padding:12px;
  color:#fff;
  font-family: system-ui, Arial;
  box-shadow: 0 18px 60px rgba(0,0,0,0.55);
}

.wx-hud-right-title{
  font-weight:900;
  font-size:18px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  border-bottom:1px solid rgba(255,255,255,0.12);
  padding-bottom:8px;
}

.wx-time{
  font-size:14px;
  font-weight:800;
  color:#57d3ff;
}

.wx-legend-row{
  display:flex;
  gap:8px;
  margin-top:10px;
}

.wx-lg{
  flex:1;
  text-align:center;
  font-size:11px;
  font-weight:900;
  padding:7px 6px;
  border-radius:7px;
  border:1px solid rgba(255,255,255,0.10);
}

.wx-lg.rain{ background: rgba(0,220,255,0.35); }
.wx-lg.sleet{ background: rgba(130,90,255,0.35); }
.wx-lg.frzn{ background: rgba(255,170,0,0.35); }
.wx-lg.snow{ background: rgba(255,255,255,0.25); }

.wx-sub-row{
  margin-top:10px;
  font-size:12px;
  font-weight:700;
  opacity:0.9;
}

.wx-sub-row.muted{
  opacity:0.65;
}

.wx-sub-row.city{
  margin-top:12px;
  font-size:13px;
  font-weight:900;
  color:#57d3ff;
  letter-spacing:1px;
  text-transform: uppercase;
}

/* BOTTOM BAR */
.wx-hud-bottom{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  z-index:9999;
  display:flex;
  gap:14px;
  align-items:center;
  padding:10px 14px;
  background: rgba(15,10,20,0.90);
  border-top:1px solid rgba(255,255,255,0.12);
  color:#fff;
  font-family: system-ui, Arial;
}

.wx-hud-time{
  min-width:120px;
  text-align:left;
}

.wx-hud-time .big{
  font-size:20px;
  font-weight:900;
}

.wx-hud-time .small{
  font-size:11px;
  opacity:0.7;
  margin-top:2px;
}

.wx-hud-ticker{
  flex:1;
  display:flex;
  gap:12px;
  align-items:center;
  overflow:hidden;
}

.ticker-title{
  font-weight:900;
  color:#ffcb4a;
  white-space:nowrap;
}

.ticker-text{
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  opacity:0.95;
  font-weight:700;
}

/* ✅ Professional popup (brand) */
.wx-pro-popup{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial;
  background: rgba(10, 12, 18, 0.96);
  color: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 16px 40px rgba(0,0,0,.35);
}
.wx-pro-head{
  padding: 10px 12px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .3px;
  background: linear-gradient(90deg, rgba(255,120,0,.28), rgba(0,170,255,.14));
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.wx-pro-body{
  padding: 10px 12px;
}
.wx-pro-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding: 6px 0;
  font-size: 12px;
  border-bottom: 1px dashed rgba(255,255,255,.12);
}
.wx-pro-row:last-child{ border-bottom:none; }
.wx-pro-row span{ opacity:.75; }
.wx-pro-row b{ font-weight:800; }
.wx-pro-foot{
  padding: 8px 12px;
  font-size: 11px;
  opacity:.65;
  border-top: 1px solid rgba(255,255,255,.08);
}
/* =========================
   ✅ ADMIN PANEL (LEFT FIXED STYLE)
========================= */
.leaflet-control-zoom{
   position: absolute;
  top: 49px;
}
.wx-admin-panel{
  position: absolute;
  top: 179px;
  left: 0px;

  width: 240px;
  max-width: 78vw;

  background: rgba(10,10,12,0.88);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;

  z-index: 99999; /* ✅ always above map */
  color: #fff;

  font-family: Arial, sans-serif;
  box-shadow: 0 18px 60px rgba(0,0,0,0.55);

  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* ✅ Admin hidden (visitor mode) */
.wx-admin-panel.hidden{
  display: none !important;
}

/* ✅ Panel header */
.wx-admin-head{
  display:flex;
  justify-content: space-between;
  align-items:center;

  padding: 10px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.10);

  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.06),
    rgba(255,255,255,0.02)
  );
}

.wx-admin-head strong{
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.2px;
}

/* ✅ Close button */
#wxAdminClose{
  width: 30px;
  height: 30px;
  border-radius: 10px;

  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color:#fff;

  cursor:pointer;
  font-size: 14px;
  font-weight: 900;
  transition: 0.18s ease;
}

#wxAdminClose:hover{
  background: rgba(255,255,255,0.14);
  transform: scale(1.05);
}

/* ✅ Body */
.wx-admin-body{
  padding: 10px 12px;
  display:flex;
  flex-direction: column;
  gap: 8px;

  max-height: 420px; /* ✅ scroll if too many buttons */
  overflow-y: auto;
}

/* ✅ Smooth scrollbar */
.wx-admin-body::-webkit-scrollbar{ width: 8px; }
.wx-admin-body::-webkit-scrollbar-thumb{
  background: rgba(255,255,255,0.18);
  border-radius: 10px;
}
.wx-admin-body::-webkit-scrollbar-thumb:hover{
  background: rgba(255,255,255,0.30);
}

/* ✅ Admin Buttons */
.wx-admin-btn{
  width:100%;
  padding: 10px 10px;
  border-radius: 12px;

  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);

  color:#fff;
  cursor:pointer;
  text-align:left;

  font-weight: 800;
  font-size: 12px;

  transition: 0.18s ease;
}

.wx-admin-btn:hover{
  background: rgba(255,255,255,0.12);
  transform: translateY(-1px);
}

/* ✅ Variants */
.wx-admin-btn.danger{
  border-color: rgba(255,0,0,0.25);
  background: rgba(255,0,0,0.08);
}
.wx-admin-btn.save{
  border-color: rgba(0,255,136,0.25);
  background: rgba(0,255,136,0.08);
}
.wx-admin-btn.load{
  border-color: rgba(0,170,255,0.25);
  background: rgba(0,170,255,0.08);
}

/* ✅ Separator */
.wx-admin-sep{
  border: none;
  border-top: 1px solid rgba(255,255,255,0.12);
  margin: 6px 0;
}

/* ✅ When map is fullscreen, keep admin panel clean and smaller */
.wx-map-area.fullscreen .wx-admin-panel,
.wx-map-wrap.fullscreen .wx-admin-panel{
  top: 12px;
  left: 12px;
  width: 210px;
  border-radius: 14px;
  opacity: 0.98;
}

/* ✅ On very small screens while fullscreen */
@media (max-width: 540px){
  .wx-map-area.fullscreen .wx-admin-panel,
  .wx-map-wrap.fullscreen .wx-admin-panel{
    width: min(200px, 78vw);
    top: auto;
    bottom: 12px;  /* ✅ move down to avoid HUD top */
    left: 12px;
  }

  .wx-admin-body{
    max-height: 220px;
  }
}

  /* Popup style */
  .wx-pro-popup{
    font-family: Arial, sans-serif;
    padding:6px;
  }
  .wx-pro-head{
    font-weight:800;
    margin-bottom:6px;
  }
  .wx-pro-row{
    display:flex;
    justify-content:space-between;
    font-size: 12px;
    margin: 2px 0;
  }
  .wx-pro-foot{
    margin-top:6px;
    font-size: 11px;
    opacity:0.75;
  }

.wx-map-fullscreen-btn{
  position: absolute;
  top: 65px;
  right: 12px;
  z-index: 99999;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 10px 14px;
  border-radius: 14px;

  border: 1px solid rgba(255,255,255,0.18);
  background: linear-gradient(145deg, rgba(36, 250, 197, 0.55), rgba(20,30,50,0.55));
  color: #fff;

  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.2px;

  cursor: pointer;
  user-select: none;

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  box-shadow: 0 14px 40px rgba(0,0,0,0.45);
  transition: 0.18s ease;
}

/* ✅ Hover effect */
.wx-map-fullscreen-btn:hover{
  transform: translateY(-1px);
  border-color: rgba(255, 122, 0, 0.55);
  box-shadow: 0 18px 55px rgba(0,0,0,0.55);
  background: linear-gradient(145deg, rgba(255,122,0,0.20), rgba(0,0,0,0.55));
}

/* ✅ Click effect */
.wx-map-fullscreen-btn:active{
  transform: scale(0.97);
}

/* ✅ Focus (keyboard accessibility) */
.wx-map-fullscreen-btn:focus{
  outline: none;
}
.wx-map-fullscreen-btn:focus-visible{
  outline: 2px solid rgba(255,122,0,0.65);
  outline-offset: 2px;
}

/* ✅ Optional icon styling if you add <i> inside */
.wx-map-fullscreen-btn i{
  font-size: 14px;
  opacity: 0.95;
}

/* ✅ Mobile improvement */
@media (max-width: 540px){
  .wx-map-fullscreen-btn{
    padding: 9px 12px;
    font-size: 12px;
    border-radius: 12px;
  }
}

/* ✅ Fullscreen Mode */
.wx-map-area.fullscreen{
  position: fixed !important;
  inset: 0 !important;
  width: 100vw !important;
  height: 100% !important;
  z-index: 999999 !important;
  border-radius: 0 !important;
}

/* ✅ Map must stretch */
.wx-map-area.fullscreen .wx-leaflet-map{
  width: 100% !important;
  height: 100% !important; /* ✅ important */
}

.wx-radar-legend{
  position:fixed;
  bottom:18px;
  left:18px;
  background:rgba(0,0,0,0.75);
  padding:10px 12px;
  border-radius:10px;
  color:#fff;
  font-size:11px;
  z-index:9999;
  backdrop-filter: blur(6px);
}
.wx-lg-title{font-weight:700;margin-bottom:6px;}
.wx-lg-scale{display:flex;height:8px;margin-bottom:6px;}
.wx-lg-scale span{flex:1;}
.wx-lg-labels{display:flex;justify-content:space-between;font-size:10px;opacity:.85;}
.wx-lightning-flash {
  animation: lightningFlash 1.2s ease-out infinite;
}

@keyframes lightningFlash {
  0%   { opacity: 0; transform: scale(0.3); }
  10%  { opacity: 1; transform: scale(1.4); }
  30%  { opacity: 0.2; }
  60%  { opacity: 1; }
  100% { opacity: 0; transform: scale(2); }
}

.city-details-grid{

  display:grid;

  grid-template-columns: 1fr 1fr;

  gap:4px 10px;

  margin-top:8px;

  font-size:13px;

  font-weight:700;

  color:var(--muted);

}.risk-fill{
  height:100%;
  border-radius:999px;
  transition: width 350ms ease;
}

/* ===================== */
/* SLIDER STYLE */
/* ===================== */

.slider {

  background: rgba(10,20,35,0.7);
  border-radius: 16px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(6px);

}

.slide {

  display: flex;
  gap: 10px;

  align-items: center;

  padding: 10px 14px;

  margin-right: 10px;

  border-radius: 12px;

  background: rgba(15,25,45,0.8);

  border-left: 4px solid #00ff9c;

  box-shadow: 0 0 6px rgba(0,255,200,0.2);

  transition: 0.3s;

}

.slide:hover {

  transform: translateY(-2px);

  box-shadow: 0 0 14px rgba(0,255,200,0.4);

}

/* icon */

.s-icon {

  width: 28px;
  height: 28px;

  border-radius: 6px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(0,120,255,0.2);

  font-size: 14px;

}

/* title */

.s-title {

  font-weight: 700;
  color: #e8f2ff;

}

/* desc */

.s-desc {

  font-size: 12px;
  color: #9fb4d9;

}

/* ===================== */
/* SLIDER STYLE */
/* ===================== */

.slider {

  background: rgba(10,20,35,0.7);
  border-radius: 16px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(6px);

}

.slide {

  display: flex;
  gap: 10px;

  align-items: center;

  padding: 10px 14px;

  margin-right: 10px;

  border-radius: 12px;

  background: rgba(15,25,45,0.8);

  border-left: 4px solid #00ff9c;

  box-shadow: 0 0 6px rgba(0,255,200,0.2);

  transition: 0.3s;

}

.slide:hover {

  transform: translateY(-2px);

  box-shadow: 0 0 14px rgba(0,255,200,0.4);

}

/* icon */

.s-icon {

  width: 28px;
  height: 28px;

  border-radius: 6px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(0,120,255,0.2);

  font-size: 14px;

}

/* title */

.s-title {

  font-weight: 700;
  color: #e8f2ff;

}

/* desc */

.s-desc {

  font-size: 12px;
  color: #9fb4d9;

}

.msg.thinking {

  display: flex;
  align-items: center;
  gap: 8px;

  font-size: 14px;
  opacity: 0.9;

}

.robot {

  font-size: 18px;
  animation: blink 1.2s infinite;

}

@keyframes blink {

  0% { opacity: 1; }
  50% { opacity: 0.4; }
  100% { opacity: 1; }

}

.dots span {

  animation: dot 1.2s infinite;
  font-weight: bold;

}

.dots span:nth-child(2){
  animation-delay: 0.2s;
}

.dots span:nth-child(3){
  animation-delay: 0.4s;
}

@keyframes dot {

  0% { opacity: 0 }
  50% { opacity: 1 }
  100% { opacity: 0 }

}

.track.dragging {
  animation: none !important;
}

.slider-wrap{
  display:flex;
  align-items:center;
  position:relative;
}

.marquee{
  overflow:hidden;
  flex:1;
}

.track{
  display:flex;
  gap:10px;
  transition:transform 0.3s ease;
  cursor:grab;
}

.track:active{
  cursor:grabbing;
}

.slide-btn{
  background:#111;
  color:#fff;
  border:none;
  padding:6px 10px;
  cursor:pointer;
}

.slide-btn:hover{
  background:#333;
}


/* severity colors */

.slide.severity-critical{
  border-left:5px solid red;
}

.slide.severity-high{
  border-left:5px solid orange;
}

.slide.severity-medium{
  border-left:5px solid yellow;
}

.slide.severity-low{
  border-left:5px solid lime;
}


/* highlight */

.new-alert{
  animation:flashAlert 0.6s ease 2;
}

@keyframes flashAlert{
  0%{opacity:0.6; transform:scale(0.95)}
  50%{opacity:1; transform:scale(1.05)}
  100%{opacity:1; transform:scale(1)}
}