/* Alap gombstílus minden mérethez */
.btn {
  border: none;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #2563eb;
  color: white;
}

.btn:disabled {
  background: #b3c6f7;
  cursor: not-allowed;
}

/* Nagy gomb */
.btn--large {
  height: 40px;
  min-width: 110px;
  font-size: 16px;
  border-radius: 6px;
  padding: 0 18px;
}

/* Kis gomb */
.btn--small {
  height: 32px;
  min-width: 70px;
  font-size: 14px;
  border-radius: 5px;
  padding: 0 12px;
}
