/* Notifications Page CSS */
.nt-container { max-width: 1400px; margin: 0 auto; padding: 20px 24px; }
.nt-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; flex-wrap: wrap; gap: 12px; }
.nt-header-left h2 { font-size: 16px; font-weight: 700; color: #111827; display: inline-block; margin-right: 8px; }
.nt-breadcrumb { font-size: 11px; color: #6b7280; }
.nt-btn-outline { border: 1px solid #e5e7eb; background: #fff; padding: 6px 14px; border-radius: 6px; font-size: 11px; font-weight: 600; color: #374151; cursor: pointer; }
.nt-layout { display: grid; grid-template-columns: minmax(0,2fr) minmax(0,1fr); gap: 24px; align-items: start; }
@media (max-width: 1024px) { .nt-layout { grid-template-columns: 1fr; } }
.nt-card { background: #fff; border: 1px solid #e5e7eb; border-radius: 12px; margin-bottom: 24px; overflow: hidden; }
.nt-card-header { display: flex; justify-content: space-between; align-items: center; padding: 14px 24px; border-bottom: 1px solid #e5e7eb; flex-wrap: wrap; gap: 8px; }
.nt-card-title { font-size: 13px; font-weight: 700; color: #111827; }
.nt-col-label { font-size: 10px; font-weight: 600; color: #6b7280; text-transform: uppercase; }
.nt-row { display: flex; justify-content: space-between; align-items: center; padding: 14px 24px; border-bottom: 1px solid #f3f4f6; }
.nt-row:last-child { border-bottom: none; }
.nt-row:hover { background: #fdfdfd; }
.nt-row-left { display: flex; align-items: center; gap: 14px; flex: 1; }
.nt-icon-wrap { width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.nt-icon-email { background: #eff6ff; color: #3b82f6; }
.nt-icon-mobile { background: #f0fdf4; color: #22c55e; }
.nt-icon-slack { background: #fef3c7; color: #f59e0b; }
.nt-icon-push { background: #fce7f3; color: #ec4899; }
.nt-icon-task { background: #ede9fe; color: #8b5cf6; }
.nt-icon-budget { background: #dcfce7; color: #16a34a; }
.nt-icon-invoice { background: #ffedd5; color: #ea580c; }
.nt-icon-collab { background: #dbeafe; color: #2563eb; }
.nt-icon-meeting { background: #fef9c3; color: #ca8a04; }
.nt-icon-status { background: #f3f4f6; color: #6b7280; }
.nt-row-title { font-size: 12px; font-weight: 600; color: #111827; }
.nt-row-desc { font-size: 11px; color: #6b7280; margin-top: 2px; }
.nt-row-right { display: flex; align-items: center; gap: 24px; flex-shrink: 0; }
.nt-email-label { font-size: 11px; color: #6b7280; }
.nt-toggle { position: relative; display: inline-block; width: 32px; height: 18px; }
.nt-toggle input { opacity: 0; width: 0; height: 0; }
.nt-toggle span { position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background-color: #e5e7eb; transition: .3s; border-radius: 34px; }
.nt-toggle span:before { position: absolute; content: ""; height: 14px; width: 14px; left: 2px; bottom: 2px; background: white; transition: .3s; border-radius: 50%; }
.nt-toggle input:checked + span { background-color: #10b981; }
.nt-toggle input:checked + span:before { transform: translateX(14px); }
.nt-dnd-desc { font-size: 11px; color: #6b7280; line-height: 1.5; margin-bottom: 16px; padding: 0 24px 16px; }
.nt-link-blue { font-size: 11px; font-weight: 700; color: #3b82f6; text-decoration: none; display: block; padding: 0 24px 20px; }
.nt-kb-icon { width: 32px; height: 32px; border-radius: 8px; background: #eff6ff; color: #3b82f6; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; font-size: 14px; }
.nt-kb-title { font-size: 12px; font-weight: 700; color: #111827; margin-bottom: 8px; line-height: 1.4; }
.nt-kb-desc { font-size: 11px; color: #6b7280; line-height: 1.5; margin-bottom: 12px; }
.nt-link-learn { font-size: 10px; font-weight: 700; color: #3b82f6; text-decoration: none; text-transform: uppercase; }
.nt-faq-title { font-size: 14px; font-weight: 700; color: #111827; margin-bottom: 16px; }
.nt-faq-item { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; border-bottom: 1px solid #f3f4f6; cursor: pointer; }
.nt-faq-item:last-child { border-bottom: none; }
.nt-faq-q { font-size: 12px; font-weight: 500; color: #374151; }
.nt-faq-icon { color: #9ca3af; font-size: 13px; }
.nt-faq-item:hover .nt-faq-q { color: #111827; }
.nt-illus-card { background: #fff; border: 1px solid #e5e7eb; border-radius: 12px; padding: 24px; display: flex; flex-direction: column; position: relative; overflow: hidden; min-height: 160px; margin-bottom: 24px; }
.nt-illus-card-title { font-size: 14px; font-weight: 700; color: #111827; margin-bottom: 10px; }
.nt-illus-card p { font-size: 11px; color: #6b7280; line-height: 1.5; margin-bottom: 20px; max-width: 55%; }
.nt-illus-card a { font-size: 10px; font-weight: 700; color: #3b82f6; text-transform: uppercase; text-decoration: none; }
.nt-illus-img { position: absolute; right: 16px; bottom: 16px; width: 130px; height: auto; }
