/* DV WPBakery Button styles */
.dv-btn {
  display: block;
  width: 100%;
  box-sizing: border-box;
  background: #00539b;           /* nova barva ozadja */
  color: #ffffff !important;     /* bele črke vedno */
  text-decoration: none !important;
  text-align: center;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.2;
  padding: 15px 20px;
  border-radius: 0;
  transition: background 0.2s ease, color 0.2s ease, transform 0.05s ease;
}
.dv-btn:hover,
.dv-btn:focus {
  background: #96ce47;           /* hover */
  color: #ffffff !important;
}
.dv-btn:active {
  transform: translateY(1px);
}
.dv-btn__text {
  display: inline-block;
  pointer-events: none;
}
