.izbornik a {
  position: relative;
  color: var(--bg-primary);
  text-decoration: none;
  padding-bottom: 5px;
}

.izbornik a:hover {
  color: var(--bg-primary);
}

.izbornik a::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: var(--title-inverse);
  transform: scaleX(0);
  transition: transform 0.45s ease;
}

.izbornik a:hover::before {
  transform: scaleX(1);
}
.full-width-btn a span, 
.full-width-btn a {
    width: 100%;
    text-align: center !important;
    box-sizing: border-box;
}