/**
 * ══════════════════════════════════════════════════════════════════════════════
 * GÖKÇEOS PROTOTYPE UI V2 — BİLDİRİM MERKEZİ (NOTIFICATIONS CENTER) CSS
 * Multi-Role Alert Engine: Guest, Reception, Tech, Housekeeping, Manager & Owner
 * ══════════════════════════════════════════════════════════════════════════════
 */

.ntf-container {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  background: radial-gradient(circle at 85% 15%, rgba(239, 68, 68, 0.07) 0%, transparent 45%),
              radial-gradient(circle at 15% 85%, rgba(59, 130, 246, 0.06) 0%, transparent 45%),
              #090d16;
  color: #f8fafc;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  overflow: hidden;
}

.ntf-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.25rem;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
  gap: 1rem;
  flex-wrap: wrap;
}

.ntf-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.ntf-logo-box {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, #ef4444 0%, #f59e0b 50%, #3b82f6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 0 16px rgba(239, 68, 68, 0.35);
}

.ntf-title-area h2 {
  font-size: 1.05rem;
  font-weight: 800;
  margin: 0;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ntf-title-area p {
  font-size: 0.75rem;
  color: #94a3b8;
  margin: 0.15rem 0 0 0;
}

.ntf-tabs {
  display: flex;
  background: rgba(2, 6, 23, 0.6);
  padding: 0.25rem;
  border-radius: 99px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  gap: 0.25rem;
}

.ntf-tab-btn {
  background: transparent;
  border: none;
  color: #94a3b8;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 0.9rem;
  border-radius: 99px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.18s ease;
}

.ntf-tab-btn:hover {
  color: #f8fafc;
  background: rgba(255, 255, 255, 0.05);
}

.ntf-tab-btn.active {
  color: #ffffff;
  background: linear-gradient(135deg, #ef4444 0%, #f59e0b 100%);
  box-shadow: 0 2px 10px rgba(239, 68, 68, 0.35);
}

.ntf-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Role Filter Pills */
.ntf-role-filters {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
}

.ntf-pill {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #cbd5e1;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  white-space: nowrap;
  transition: all 0.15s;
}

.ntf-pill:hover, .ntf-pill.active {
  background: rgba(239, 68, 68, 0.15);
  border-color: #ef4444;
  color: #ffffff;
}

/* Notification Item Card */
.ntf-item-card {
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 1rem 1.15rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
  transition: all 0.15s;
}

.ntf-item-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(15, 23, 42, 0.8);
}

.ntf-item-card.priority-critical {
  border-left: 4px solid #ef4444;
}

.ntf-item-card.priority-warning {
  border-left: 4px solid #f59e0b;
}

.ntf-item-card.priority-info {
  border-left: 4px solid #3b82f6;
}

.ntf-item-card.priority-success {
  border-left: 4px solid #10b981;
}

/* Role Badges */
.ntf-role-badge {
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.18rem 0.5rem;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.badge-guest { background: rgba(168, 85, 247, 0.2); color: #c084fc; border: 1px solid rgba(168, 85, 247, 0.4); }
.badge-reception { background: rgba(56, 189, 248, 0.2); color: #38bdf8; border: 1px solid rgba(56, 189, 248, 0.4); }
.badge-tech { background: rgba(245, 158, 11, 0.2); color: #fbbf24; border: 1px solid rgba(245, 158, 11, 0.4); }
.badge-housekeeping { background: rgba(16, 185, 129, 0.2); color: #34d399; border: 1px solid rgba(16, 185, 129, 0.4); }
.badge-manager { background: rgba(239, 68, 68, 0.2); color: #f87171; border: 1px solid rgba(239, 68, 68, 0.4); }
