/* ================================================================
   WLSM Student Portal – Modern Mobile-First Design
   Theme: Blue & White | Style: Card UI | Nav: Bottom Bar
   ================================================================ */

:root {
  --wp-blue:         #1565C0;
  --wp-blue-dark:    #0D47A1;
  --wp-blue-mid:     #1976D2;
  --wp-blue-light:   #42A5F5;
  --wp-blue-xlight:  #BBDEFB;
  --wp-blue-bg:      #E8F0FE;
  --wp-page-bg:      #F4F7FF;
  --wp-white:        #FFFFFF;
  --wp-text:         #1E293B;
  --wp-text-mid:     #475569;
  --wp-muted:        #94A3B8;
  --wp-border:       #E2E8F0;
  --wp-success:      #10B981;
  --wp-warning:      #F59E0B;
  --wp-danger:       #EF4444;
  --wp-shadow:       0 4px 20px rgba(21,101,192,.12);
  --wp-shadow-sm:    0 1px 6px rgba(0,0,0,.07);
  --wp-radius:       14px;
  --wp-radius-sm:    8px;
  --wp-bnav:         66px;
  --wp-header:       58px;
  --wp-sidebar-w:    245px;
}

/* ──────────────────────────────────────────
   GLOBAL RESET FOR PORTAL
   ────────────────────────────────────────── */
.wlsm-container,
.wlsm-container * {
  box-sizing: border-box;
}
.wlsm-container {
  background: var(--wp-page-bg) !important;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif !important;
  color: var(--wp-text) !important;
  position: relative;
}

/* ──────────────────────────────────────────
   PROGRESS BAR PRELOADER
   ────────────────────────────────────────── */
#wlsm-topbar-loader {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  z-index: 999999;
  pointer-events: none;
  overflow: hidden;
}
#wlsm-topbar-loader::before {
  content: '';
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--wp-blue-dark), var(--wp-blue-light), #ffffff55);
  border-radius: 0 3px 3px 0;
  box-shadow: 0 0 12px rgba(66,165,245,.8);
  animation: wlsm-progress-run 2.4s ease forwards;
}
@keyframes wlsm-progress-run {
  0%   { width: 0%;  opacity: 1; }
  55%  { width: 72%; opacity: 1; }
  100% { width: 91%; opacity: 1; }
}
#wlsm-topbar-loader.wlsm-loader-done::before {
  animation: none !important;
  width: 100% !important;
  transition: width .25s ease, opacity .4s ease !important;
  opacity: 0 !important;
}

/* ──────────────────────────────────────────
   LOGIN PAGE
   ────────────────────────────────────────── */
.wlsm-portal-login-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--wp-blue-dark) 0%, var(--wp-blue-mid) 55%, var(--wp-blue-light) 100%);
  padding: 24px 16px;
}
.wlsm-portal-login-card {
  background: var(--wp-white);
  border-radius: 24px;
  padding: 40px 32px 36px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 28px 64px rgba(0,0,0,.28);
  text-align: center;
}
.wlsm-login-hero-icon {
  width: 76px;
  height: 76px;
  background: var(--wp-blue-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 4px 16px rgba(21,101,192,.18);
}
.wlsm-login-hero-icon svg {
  width: 40px;
  height: 40px;
  fill: var(--wp-blue);
}
.wlsm-portal-login-card h2 {
  font-size: 1.5rem !important;
  font-weight: 700 !important;
  color: var(--wp-text) !important;
  margin: 0 0 6px !important;
  letter-spacing: -.01em;
}
.wlsm-login-sub {
  color: var(--wp-text-mid) !important;
  font-size: .9rem !important;
  margin: 0 0 28px !important;
}
/* WP login form overrides */
.wlsm-portal-login-card p { margin-bottom: 14px !important; text-align: left !important; }
.wlsm-portal-login-card #wlsm-login-form p { margin-bottom: 14px !important; text-align: left !important; }
.wlsm-portal-login-card #wlsm-login-form label {
  display: block !important;
  font-size: .78rem !important;
  font-weight: 700 !important;
  color: var(--wp-text-mid) !important;
  margin-bottom: 6px !important;
  text-transform: uppercase !important;
  letter-spacing: .05em !important;
}
.wlsm-portal-login-card #wlsm-login-form input[type="text"],
.wlsm-portal-login-card #wlsm-login-form input[type="password"] {
  width: 100% !important;
  padding: 13px 16px !important;
  border: 1.5px solid var(--wp-border) !important;
  border-radius: 10px !important;
  font-size: .95rem !important;
  color: var(--wp-text) !important;
  background: #F8FAFF !important;
  transition: border-color .2s, box-shadow .2s !important;
  outline: none !important;
  display: block !important;
}
.wlsm-portal-login-card #wlsm-login-form input[type="text"]:focus,
.wlsm-portal-login-card #wlsm-login-form input[type="password"]:focus {
  border-color: var(--wp-blue) !important;
  background: #fff !important;
  box-shadow: 0 0 0 3px rgba(21,101,192,.1) !important;
}
.wlsm-portal-login-card #wlsm-login-form .forgetmenot {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  font-size: .85rem !important;
  color: var(--wp-text-mid) !important;
}
.wlsm-portal-login-card #wlsm-login-form input[type="submit"],
.wlsm-portal-login-card #wlsm-login-submit {
  width: 100% !important;
  padding: 14px !important;
  background: linear-gradient(135deg, var(--wp-blue), var(--wp-blue-mid)) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 10px !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  letter-spacing: .02em !important;
  transition: transform .15s, box-shadow .15s !important;
  box-shadow: 0 4px 16px rgba(21,101,192,.35) !important;
  margin-top: 6px !important;
}
.wlsm-portal-login-card #wlsm-login-form input[type="submit"]:hover {
  box-shadow: 0 6px 22px rgba(21,101,192,.45) !important;
}
.wlsm-portal-login-card #wlsm-login-form input[type="submit"]:active {
  transform: scale(.98) !important;
}
.wlsm-login-forgot-link {
  display: inline-block;
  margin-top: 18px;
  font-size: .88rem;
  color: var(--wp-blue);
  text-decoration: none;
  font-weight: 500;
}
.wlsm-login-forgot-link:hover { text-decoration: underline; }

/* ──────────────────────────────────────────
   APP HEADER (logged-in state)
   ────────────────────────────────────────── */
.wlsm-app-header {
  position: sticky;
  top: 0;
  z-index: 300;
  height: var(--wp-header);
  background: linear-gradient(90deg, var(--wp-blue-dark) 0%, var(--wp-blue) 100%);
  display: flex;
  align-items: center;
  padding: 0 16px;
  box-shadow: 0 2px 10px rgba(0,0,0,.2);
  color: #fff;
  gap: 10px;
}
.wlsm-app-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
  text-decoration: none;
}
.wlsm-app-brand-logo {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.18);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.wlsm-app-brand-logo svg {
  width: 20px; height: 20px; fill: white;
}
.wlsm-app-brand-text { display: flex; flex-direction: column; overflow: hidden; }
.wlsm-app-brand-title {
  font-size: .95rem; font-weight: 700; color: #fff;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; line-height: 1.25;
}
.wlsm-app-brand-sub {
  font-size: .7rem; color: rgba(255,255,255,.72);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.wlsm-app-logout-btn {
  display: flex; align-items: center; gap: 5px;
  background: rgba(255,255,255,.16);
  color: #fff; text-decoration: none;
  padding: 7px 13px;
  border-radius: 20px; font-size: .8rem; font-weight: 600;
  transition: background .2s; white-space: nowrap; flex-shrink: 0;
  border: 1px solid rgba(255,255,255,.25);
}
.wlsm-app-logout-btn:hover { background: rgba(255,255,255,.28); color: #fff; }
.wlsm-app-logout-btn svg { width: 14px; height: 14px; fill: currentColor; }

/* ──────────────────────────────────────────
   PORTAL MAIN LAYOUT
   ────────────────────────────────────────── */

/* Sidebar (desktop) */
.wlsm-portal-sidebar {
  position: fixed;
  top: var(--wp-header);
  left: 0; bottom: 0;
  width: var(--wp-sidebar-w);
  background: var(--wp-white);
  border-right: 1px solid var(--wp-border);
  overflow-y: auto;
  z-index: 200;
  padding: 10px 0 20px;
  box-shadow: 2px 0 12px rgba(0,0,0,.04);
}
.wlsm-sidebar-section-title {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--wp-muted);
  padding: 14px 18px 6px;
}
.wlsm-sidebar-nav { list-style: none; margin: 0; padding: 0; }
.wlsm-sidebar-nav li { margin: 0; padding: 0; }
.wlsm-sidebar-nav li a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 18px;
  font-size: .88rem; font-weight: 500;
  color: var(--wp-text-mid); text-decoration: none;
  border-left: 3px solid transparent;
  transition: all .18s; position: relative;
}
.wlsm-sidebar-nav li a .wlsm-sn-icon {
  width: 30px; height: 30px;
  background: var(--wp-page-bg);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: background .18s;
}
.wlsm-sidebar-nav li a .wlsm-sn-icon svg {
  width: 16px; height: 16px; fill: var(--wp-muted); transition: fill .18s;
}
.wlsm-sidebar-nav li a:hover { background: var(--wp-blue-bg); color: var(--wp-blue); border-left-color: var(--wp-blue-xlight); }
.wlsm-sidebar-nav li a:hover .wlsm-sn-icon { background: #fff; }
.wlsm-sidebar-nav li a:hover .wlsm-sn-icon svg { fill: var(--wp-blue); }
.wlsm-sidebar-nav li a.active { background: var(--wp-blue-bg); color: var(--wp-blue); font-weight: 700; border-left-color: var(--wp-blue); }
.wlsm-sidebar-nav li a.active .wlsm-sn-icon { background: #fff; }
.wlsm-sidebar-nav li a.active .wlsm-sn-icon svg { fill: var(--wp-blue); }

/* Content area shift for fixed sidebar — applied to actual content areas */
/* On desktop, shift content right past the fixed-position sidebar */
@media (min-width: 768px) {
  .wlsm-container .wlsm-content-area {
    margin-left: var(--wp-sidebar-w) !important;
    padding: 20px 24px !important;
  }
}

/* ──────────────────────────────────────────
   CONTENT CARDS
   ────────────────────────────────────────── */
.wlsm-p-card {
  background: var(--wp-white);
  border-radius: var(--wp-radius);
  box-shadow: var(--wp-shadow-sm);
  margin-bottom: 16px;
  overflow: hidden;
  border: 1px solid var(--wp-border);
}
.wlsm-p-card-head {
  padding: 13px 18px;
  border-bottom: 1px solid var(--wp-border);
  display: flex; align-items: center; gap: 10px;
  background: linear-gradient(90deg, var(--wp-blue-bg), #fff);
}
.wlsm-p-card-head-icon {
  width: 32px; height: 32px;
  background: var(--wp-white);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--wp-shadow-sm); flex-shrink: 0;
}
.wlsm-p-card-head-icon svg { width: 17px; height: 17px; fill: var(--wp-blue); }
.wlsm-p-card-title {
  font-size: .95rem; font-weight: 700; color: var(--wp-text); margin: 0;
}
.wlsm-p-card-body { padding: 16px 18px; }

/* ──────────────────────────────────────────
   OLD ELEMENTS OVERRIDES
   ────────────────────────────────────────── */
/* Hide old hamburger checkbox nav */
.wlsm-container .wlsm-menu-btn,
.wlsm-container #wlsm-menu-btn { display: none !important; }
.wlsm-container .wlsm-menu-label { display: none !important; }
.wlsm-container .wlsm-navigation-links { display: none !important; }

/* Hide old logged-in info (replaced by header) */
.wlsm-logged-in-info { display: none !important; }

/* Content area overrides */
.wlsm-container .wlsm-content-area {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  min-height: unset !important;
}

/* Section titles */
.wlsm-st-main-title {
  font-size: 1.1rem !important; font-weight: 700 !important;
  color: var(--wp-text) !important;
  padding: 0 0 10px !important; margin: 0 0 16px !important;
  border-bottom: 2px solid var(--wp-blue-bg) !important;
}

/* Details heading */
.wlsm-container .wlsm-st-details-heading {
  background: var(--wp-blue-bg) !important;
  border-radius: var(--wp-radius-sm) !important;
  padding: 8px 12px !important;
  font-size: .88rem !important; font-weight: 700 !important;
  color: var(--wp-blue) !important;
  border-bottom: none !important; margin-bottom: 12px !important;
}

/* Student details box */
.wlsm-container .wlsm-st-details {
  background: var(--wp-white) !important;
  border-radius: var(--wp-radius) !important;
  box-shadow: var(--wp-shadow-sm) !important;
  padding: 16px !important; border: 1px solid var(--wp-border) !important;
}
.wlsm-container .wlsm-parent-student-section {
  background: var(--wp-white) !important;
  border-radius: var(--wp-radius) !important;
  box-shadow: var(--wp-shadow-sm) !important;
  padding: 16px !important; border: 1px solid var(--wp-border) !important;
}

/* Detail list */
.wlsm-container .wlsm-st-details-list { padding: 0 !important; margin: 0 !important; }
.wlsm-container .wlsm-st-details-list li {
  padding: 8px 0 !important; font-size: .88rem !important;
  border-bottom: 1px solid var(--wp-border) !important; display: flex; flex-wrap: wrap; gap: 4px;
}
.wlsm-container .wlsm-st-details-list li:last-child { border-bottom: none !important; }
.wlsm-st-details-list-key { font-weight: 600; color: var(--wp-text-mid); min-width: 120px; }
.wlsm-st-details-list-value { color: var(--wp-text); }

/* Notice list */
.wlst-st-list { padding: 0 !important; margin: 0 !important; list-style: none !important; }
.wlst-st-list li { padding: 10px 0 !important; border-bottom: 1px solid var(--wp-border) !important; }
.wlst-st-list li:last-child { border-bottom: none !important; }

/* Student photo */
.wlsm-img-thumbnail {
  width: 80px !important; height: 80px !important;
  border-radius: 50% !important; object-fit: cover !important;
  border: 3px solid var(--wp-blue-xlight) !important;
  display: block !important; margin: 0 auto 14px !important;
  box-shadow: 0 4px 12px rgba(21,101,192,.18) !important;
}

/* Tables */
.wlsm-container table { border-collapse: collapse; width: 100%; }
.wlsm-container th {
  background: var(--wp-blue) !important; color: #fff !important;
  padding: 10px 12px !important; font-size: .82rem !important;
  text-align: left !important; font-weight: 600 !important;
}
.wlsm-container td {
  padding: 9px 12px !important; font-size: .86rem !important;
  color: var(--wp-text) !important; border-bottom: 1px solid var(--wp-border) !important;
}
.wlsm-container tr:last-child td { border-bottom: none !important; }
.wlsm-container tr:nth-child(even) td { background: var(--wp-blue-bg) !important; }
.wlsm-container .table-responsive { overflow-x: auto; -webkit-overflow-scrolling: touch; width: 100%; }

/* Buttons */
.wlsm-container input[type="submit"],
.wlsm-container button[type="submit"],
.wlsm-container .wlsm-btn {
  background: linear-gradient(135deg, var(--wp-blue), var(--wp-blue-mid)) !important;
  color: #fff !important; border: none !important;
  border-radius: 9px !important; padding: 10px 20px !important;
  font-weight: 600 !important; font-size: .88rem !important;
  cursor: pointer !important; transition: opacity .2s, transform .15s !important;
  box-shadow: 0 3px 10px rgba(21,101,192,.25) !important;
}
.wlsm-container input[type="submit"]:hover,
.wlsm-container button[type="submit"]:hover { opacity: .9 !important; }
.wlsm-container input[type="submit"]:active { transform: scale(.98) !important; }

/* Forms */
.wlsm-container .wlsm-form-control,
.wlsm-container input[type="text"]:not(#wlsm-login-username),
.wlsm-container input[type="email"],
.wlsm-container input[type="number"],
.wlsm-container input[type="date"],
.wlsm-container select,
.wlsm-container textarea {
  border-radius: 8px !important; border: 1.5px solid var(--wp-border) !important;
  padding: 9px 13px !important; font-size: .9rem !important;
  background: #F8FAFF !important;
  transition: border-color .2s !important;
}
.wlsm-container input:focus, .wlsm-container select:focus, .wlsm-container textarea:focus {
  border-color: var(--wp-blue) !important; outline: none !important;
  box-shadow: 0 0 0 3px rgba(21,101,192,.1) !important;
}

/* Attendance badge */
.wlsm-st-attendance-section ul.wlsm-st-attendance-stats { list-style: none !important; padding: 0 !important; margin: 0 !important; }
.wlsm-st-attendance-section ul.wlsm-st-attendance-stats li {
  display: inline-block !important;
  background: var(--wp-blue-bg) !important; color: var(--wp-blue) !important;
  border-radius: 10px !important; padding: 10px 18px !important;
  font-weight: 700 !important; font-size: 1.1rem !important;
  box-shadow: var(--wp-shadow-sm) !important;
}

/* Links */
.wlsm-container a { color: var(--wp-blue); }

/* Flex helpers */
.wlsm-flex-between { display: flex !important; flex-wrap: wrap !important; gap: 16px !important; justify-content: flex-start !important; }
.wlsm-l-w-50, .wlsm-l-w-48 { flex: 1 !important; min-width: 260px !important; }

/* ──────────────────────────────────────────
   BOTTOM NAVIGATION BAR (mobile only)
   ────────────────────────────────────────── */
.wlsm-bottom-nav {
  display: none;
}
@media (max-width: 767px) {
  .wlsm-portal-sidebar { display: none !important; }
  .wlsm-container .wlsm-content-area {
    margin-left: 0 !important;
    padding: 12px 12px calc(var(--wp-bnav) + 20px) !important;
  }

  .wlsm-bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    height: var(--wp-bnav);
    background: var(--wp-white);
    border-top: 1px solid var(--wp-border);
    box-shadow: 0 -4px 20px rgba(0,0,0,.09);
    z-index: 500; align-items: stretch;
  }
  .wlsm-bn-item {
    flex: 1;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 3px; text-decoration: none;
    color: var(--wp-muted); font-size: .62rem; font-weight: 600;
    padding: 6px 2px;
    border: none; background: none; cursor: pointer;
    transition: color .2s; -webkit-tap-highlight-color: transparent;
    position: relative;
  }
  .wlsm-bn-item.active, .wlsm-bn-item:focus { color: var(--wp-blue); outline: none; }
  .wlsm-bn-item.active::before {
    content: '';
    position: absolute;
    top: 0; left: 15%; right: 15%;
    height: 2.5px;
    background: var(--wp-blue);
    border-radius: 0 0 4px 4px;
  }
  .wlsm-bn-icon {
    width: 23px; height: 23px; fill: currentColor; display: block;
  }
  .wlsm-bn-item.active .wlsm-bn-icon { filter: drop-shadow(0 2px 4px rgba(21,101,192,.3)); }
}

/* ──────────────────────────────────────────
   SLIDE-UP NAVIGATION DRAWER
   ────────────────────────────────────────── */
.wlsm-nav-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(15,23,42,.5); z-index: 600;
  backdrop-filter: blur(2px);
}
.wlsm-nav-overlay.wlsm-open { display: block; }

.wlsm-nav-drawer {
  position: fixed; bottom: 0; left: 0; right: 0;
  max-height: 82vh;
  background: var(--wp-white);
  border-radius: 22px 22px 0 0;
  z-index: 700;
  transform: translateY(100%);
  transition: transform .32s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column; overflow: hidden;
}
.wlsm-nav-drawer.wlsm-open { transform: translateY(0); }

/* Drag handle */
.wlsm-drawer-handle {
  width: 36px; height: 4px;
  background: var(--wp-border);
  border-radius: 4px;
  margin: 10px auto 2px;
  flex-shrink: 0;
}
.wlsm-drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 18px 12px; border-bottom: 1px solid var(--wp-border); flex-shrink: 0;
}
.wlsm-drawer-head-title { font-size: .95rem; font-weight: 700; color: var(--wp-text); }
.wlsm-drawer-close-btn {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--wp-page-bg); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; color: var(--wp-text-mid); transition: background .2s;
}
.wlsm-drawer-close-btn:hover { background: var(--wp-border); }

.wlsm-drawer-list {
  list-style: none; margin: 0; padding: 8px 0;
  overflow-y: auto; flex: 1;
}
.wlsm-drawer-list::-webkit-scrollbar { width: 3px; }
.wlsm-drawer-list::-webkit-scrollbar-thumb { background: var(--wp-blue-xlight); border-radius: 3px; }

.wlsm-drawer-list li { margin: 0; padding: 0; }
.wlsm-drawer-list li a {
  display: flex; align-items: center; gap: 13px;
  padding: 12px 18px; font-size: .92rem;
  color: var(--wp-text); text-decoration: none;
  transition: background .15s;
}
.wlsm-drawer-list li a:hover,
.wlsm-drawer-list li a.active {
  background: var(--wp-blue-bg); color: var(--wp-blue);
}
.wlsm-drawer-list li a.active { font-weight: 700; }
.wlsm-dl-icon {
  width: 38px; height: 38px; background: var(--wp-blue-bg);
  border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.wlsm-dl-icon svg { width: 20px; height: 20px; fill: var(--wp-blue); }
.wlsm-drawer-list li a.active .wlsm-dl-icon { background: var(--wp-blue); }
.wlsm-drawer-list li a.active .wlsm-dl-icon svg { fill: #fff; }

/* ──────────────────────────────────────────
   SCROLLBAR FOR SIDEBAR
   ────────────────────────────────────────── */
.wlsm-portal-sidebar::-webkit-scrollbar { width: 4px; }
.wlsm-portal-sidebar::-webkit-scrollbar-thumb { background: var(--wp-blue-xlight); border-radius: 4px; }

/* ──────────────────────────────────────────
   DESKTOP (>= 768px)
   ────────────────────────────────────────── */
@media (min-width: 768px) {
  .wlsm-nav-drawer { display: none !important; }
  .wlsm-nav-overlay { display: none !important; }
}

/* ──────────────────────────────────────────
   ALERT / STATUS BADGES
   ────────────────────────────────────────── */
.wlsm-alert-success {
  background: #ECFDF5 !important; color: #065F46 !important;
  border: 1px solid #A7F3D0 !important; border-radius: 9px !important;
  padding: 11px 16px !important; font-size: .88rem !important;
}
.wlsm-text-success { color: var(--wp-success) !important; }
.wlsm-text-danger  { color: var(--wp-danger)  !important; }
.wlsm-text-warning { color: var(--wp-warning) !important; }
