.obavijesti-wrapper {
  width: 100%;
  padding: 24px;
  background: linear-gradient(135deg, #f8f9fb, #eef1f6);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.obavijest-card {
  background: #ffffff;
  padding: 22px 26px;
  border-radius: 12px;
  min-height: 90px;
  display: flex;
  align-items: center;
  animation: fadeIn 0.4s ease;
}

.obavijest-card p {
  margin: 0;
  font-size: 15px;
  color: #4b5563;
  line-height: 1.5;
}

.obavijesti-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.obavijesti-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #d1d5db;
  cursor: pointer;
  transition: background 0.3s;
}

.obavijesti-dots span.active {
  background: #2563eb;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}
