.header {
  background-color: #1f2937;
  color: white;
  padding: 16px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  height: 70px;
}
.naslov {
  margin-right: 12%;
}
.header .logo-container {
  display: flex;
  align-items: center;
}

.header .logo-container img {
  height: 100px;
  margin-right: 16px;
  padding-top: 30px;
}

.header .logo-container h1 {
  font-size: 1.2rem;
  margin: 0;
  line-height: 1.2;
}

.header .buttons {
  display: flex;
  gap: 8px;
}

.header button {
  background-color: #3b82f6;
  color: white;
  font-weight: bold;
  padding: 8px 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.header button:last-child {
  height: 3rem;
  width: 7rem;
  font-size: large;
  font-weight: normal;
}

.header button:hover {
  background-color: #2563eb;
}

.header button:last-child {
  background-color: #ef4444;
}

.header button:last-child:hover {
  background-color: #dc2626;
}
