/* Layout inline compatto altezza 120px con più respiro */
.notifications-compact-inline {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 1rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 120px;
}

.notifications-compact-inline:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.notifications-compact-inline.embedded {
  height: 100%;
}

/* Header inline con pulsante */
.notifications-header-inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.7);
}

.notifications-bell {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
}

.notifications-title-inline {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Pulsante vedi tutte nell'header */
.view-all-header-btn {
  padding: 3px 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  font-size: 0.625rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.view-all-header-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.25);
}

/* Badges inline orizzontali */
.notification-badges-inline {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.notification-badge-inline {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.625rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  transition: all 0.2s ease;
  white-space: nowrap;
  font-size: 0.75rem;
}

.notification-badge-inline.has-notifications {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}

.notification-badge-inline.has-notifications:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.notification-badge-inline.empty {
  opacity: 0.5;
}

.badge-label-inline {
  font-size: 0.688rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  font-weight: 500;
}

.notification-badge-inline.has-notifications .badge-label-inline {
  color: rgba(255, 255, 255, 0.9);
}

/* Counter inline */
.badge-counter-inline {
  background: #F5484D;
  color: white;
  border-radius: 8px;
  padding: 2px 5px;
  font-size: 9px;
  font-weight: bold;
  min-width: 16px;
  text-align: center;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .notifications-compact-inline {
    padding: 0.5rem 0.75rem;
  }

  .notifications-title-inline {
    font-size: 0.688rem;
  }

  .notification-badges-inline {
    gap: 0.375rem;
  }

  .notification-badge-inline {
    padding: 0.25rem 0.5rem;
    font-size: 0.688rem;
  }

  .badge-label-inline {
    font-size: 0.625rem;
  }

  .view-all-header-btn {
    padding: 2px 8px;
    font-size: 0.563rem;
  }
}