.notification-dropdown-panel {
  width: 380px;
  padding: 0;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.notification-dropdown-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid #eee;
  background: #f8f9fa;
}

.notification-dropdown-title {
  font-weight: 600;
  font-size: 14px;
  color: #333;
}

.notification-dropdown-markall {
  font-size: 12px;
  color: #007bff;
  text-decoration: none;
  cursor: pointer;
}

.notification-dropdown-markall:hover {
  text-decoration: underline;
}

.notification-dropdown-list {
  max-height: 320px;
  overflow-y: auto;
  background: #fff;
}

.notification-dropdown-empty {
  text-align: center;
  color: #999;
  padding: 30px 16px;
  font-size: 13px;
}

.notification-dropdown-item {
  display: flex;
  align-items: flex-start;
  padding: 10px 16px;
  border-bottom: 1px solid #f0f0f0;
  cursor: pointer;
  transition: background 0.15s;
}

.notification-dropdown-item:hover {
  background: #f8f9fa;
}

.notification-dropdown-item:last-child {
  border-bottom: none;
}

.notification-dropdown-item-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  font-size: 14px;
  color: #fff;
}

.notification-dropdown-item-icon.pickup {
  background: #07c160;
}

.notification-dropdown-item-icon.runner {
  background: #ff9500;
}

.notification-dropdown-item-icon.express {
  background: #1890ff;
}

.notification-dropdown-item-icon.default {
  background: #6c757d;
}

.notification-dropdown-item-body {
  flex: 1;
  min-width: 0;
}

.notification-dropdown-item-title {
  font-size: 13px;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.4;
}

.notification-dropdown-item-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 3px;
}

.notification-dropdown-item-amount {
  font-size: 12px;
  color: #e74c3c;
  font-weight: 600;
}

.notification-dropdown-item-time {
  font-size: 11px;
  color: #999;
}

.notification-dropdown-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  border-top: 1px solid #eee;
  background: #f8f9fa;
}

.notification-dropdown-stats {
  font-size: 12px;
  color: #666;
}

.notification-dropdown-stats .stat-pickup {
  color: #07c160;
  font-weight: 600;
}

.notification-dropdown-stats .stat-runner {
  color: #ff9500;
  font-weight: 600;
}

.notification-dropdown-stats .stat-express {
  color: #1890ff;
  font-weight: 600;
}

.notification-dropdown-viewall {
  font-size: 12px;
  color: #007bff;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}

.notification-dropdown-viewall:hover {
  text-decoration: underline;
}

#notification-bell-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

#notification-bell-icon.bell-ring {
  animation: bellRing 0.6s ease-in-out;
}

@keyframes bellRing {
  0% { transform: rotate(0); }
  15% { transform: rotate(15deg); }
  30% { transform: rotate(-13deg); }
  45% { transform: rotate(10deg); }
  60% { transform: rotate(-8deg); }
  75% { transform: rotate(5deg); }
  100% { transform: rotate(0); }
}

.notification-first-text {
  display: inline-flex;
  align-items: center;
  max-width: 240px;
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 4px 12px;
  border-radius: 20px;
  line-height: 1.4;
  animation: notificationFadeIn 0.3s ease-in-out;
}

.notification-first-text .dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-right: 6px;
  flex-shrink: 0;
}

.notification-first-text.type-pickup {
  background: rgba(7, 193, 96, 0.12);
  color: #07c160;
}
.notification-first-text.type-pickup .dot {
  background: #07c160;
}

.notification-first-text.type-runner {
  background: rgba(255, 149, 0, 0.12);
  color: #e68600;
}
.notification-first-text.type-runner .dot {
  background: #ff9500;
}

.notification-first-text.type-express {
  background: rgba(24, 144, 255, 0.12);
  color: #1677d6;
}
.notification-first-text.type-express .dot {
  background: #1890ff;
}

.notification-first-text.type-default {
  background: rgba(220, 53, 69, 0.12);
  color: #c9302c;
}
.notification-first-text.type-default .dot {
  background: #dc3545;
}

@keyframes notificationFadeIn {
  from { opacity: 0; transform: translateX(8px); }
  to { opacity: 1; transform: translateX(0); }
}

#notification-first-text-item {
  display: flex;
  align-items: center;
}
