/* ============ Custom Bootstrap Overrides ============ */

/* custom zeleni gumbići */
.btn-custom {
  background-color: #6f9e73;   /* tvoja nova nijansa */
  color: #fff;
  border: none;
}
.btn-custom:hover {
  background-color: #5e8a60;
  color: #fff;
}

/* Falling hearts (ako nemaš već negdje) */
.hearts {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 10;
}
.hearts .heart {
  position: absolute;
  color: red;
  user-select: none;
  animation: fall linear infinite;
}
@keyframes fall {
  to {
    transform: translateY(100vh) rotate(360deg);
  }
}
