.notification-launcher { position: relative; }
.notification-bell { position: relative; display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid rgba(18,63,66,.16); border-radius: 50%; background: #fffdf7; color: #123f42; cursor: pointer; }
.notification-bell:hover { background: #edf6f1; }
.notification-bell svg { width: 19px; height: 19px; }
.notification-count { position: absolute; top: -5px; right: -5px; min-width: 20px; height: 20px; padding: 0 5px; border: 2px solid #fff; border-radius: 99px; background: #c94f3d; color: #fff; font-size: 10px; font-weight: 900; line-height: 16px; text-align: center; }
.notification-count.hidden { display: none; }
.notification-overlay { position: fixed; inset: 0; z-index: 89; background: rgba(10,29,27,.28); opacity: 0; pointer-events: none; transition: opacity .24s ease; }
.notification-overlay.open { opacity: 1; pointer-events: auto; }
.notification-panel { position: fixed; z-index: 90; top: 0; right: 0; display: flex; flex-direction: column; width: min(440px, 100vw); height: 100dvh; border-left: 1px solid rgba(18,63,66,.12); background: #fbfaf5; box-shadow: -24px 0 80px rgba(16,45,40,.18); transform: translateX(104%); transition: transform .3s cubic-bezier(.2,.8,.2,1); }
.notification-panel.open { transform: translateX(0); }
.notification-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; padding: 28px 26px 20px; border-bottom: 1px solid #e5e8e2; background: linear-gradient(145deg, #e9f4ed, #f7f1e4); }
.notification-head h2 { margin: 4px 0 0; color: #143f3b; font-family: Georgia, "Times New Roman", serif; font-size: 29px; }
.notification-head-actions { display: flex; align-items: center; gap: 8px; }
.notification-close { display: grid; place-items: center; width: 34px; height: 34px; border: 0; border-radius: 50%; background: rgba(255,255,255,.75); color: #143f3b; font-size: 22px; cursor: pointer; }
.notification-read-all { border: 0; background: transparent; color: #1d6555; font-size: 12px; font-weight: 800; cursor: pointer; }
.notification-list { flex: 1; overflow-y: auto; padding: 16px; }
.notification-item { position: relative; margin-bottom: 10px; padding: 16px 16px 14px 20px; border: 1px solid #e2e7e1; border-radius: 17px; background: #fff; }
.notification-item.unread { box-shadow: 0 9px 28px rgba(20,63,59,.08); }
.notification-item::before { content: ""; position: absolute; left: 0; top: 16px; bottom: 16px; width: 4px; border-radius: 0 4px 4px 0; background: #72998b; }
.notification-item[data-severity="critical"]::before { background: #c94f3d; }
.notification-item[data-severity="warning"]::before { background: #d59a3d; }
.notification-meta { display: flex; align-items: center; justify-content: space-between; gap: 12px; color: #718078; font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.notification-item h3 { margin: 9px 0 5px; color: #173c37; font-size: 16px; }
.notification-item p { margin: 0; color: #5c6d65; font-size: 13px; line-height: 1.5; }
.notification-actions { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 13px; }
.notification-open { border: 0; border-bottom: 1px solid currentColor; background: transparent; color: #176652; font-size: 12px; font-weight: 800; cursor: pointer; }
.notification-dismiss { border: 0; background: transparent; color: #8a938e; font-size: 12px; cursor: pointer; }
.notification-empty { padding: 60px 24px; text-align: center; color: #738079; }
.notification-empty strong { display: block; margin-bottom: 8px; color: #214740; font-family: Georgia, "Times New Roman", serif; font-size: 24px; }
@media (max-width: 620px) { .notification-panel { width: 100vw; } .notification-head { padding: 22px 18px 17px; } .notification-list { padding: 12px; } }
